在 php 中将关联数组转换为其值的简单数组
2022-08-30 07:31:13
我想转换数组:
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
我在这里错过了什么?