在php中将关联数组转换为其值的简单数组

我想转换数组:

Array ( 
[category] => category 
[post_tag] => post_tag 
[nav_menu] => nav_menu 
[link_category] => link_category 
[post_format] => post_format 
)

array(category, post_tag, nav_menu, link_category, post_format)

我试过了

$myarray = 'array('. implode(', ',get_taxonomies('','names')) .')';

这反映出:

array(category, post_tag, nav_menu, link_category, post_format)

所以我可以做

echo $myarray;
echo 'array(category, post_tag, nav_menu, link_category, post_format)';

并打印完全一样的东西。

...但我不能在函数中使用$myarray来代替手动输入的数组,因为该函数没有将其视为数组或其他东西。

我在这里错过了什么?


只需使用array_values函数:

$array = array_values($array);

你应该使用array_values() 函数

链接地址: http://www.djcxy.com/p/57331.html

上一篇: Convert an associative array to a simple array of its values in php

下一篇: PHP: How to remove specific element from an array?