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


88

我想转换数组:

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在函数中代替手动输入的数组,因为该函数不会将其视为数组或其他东西。

我在这里想念什么?


它不会在任何地方工作,因为您传递的是字符串,而不是实际的数组。有关如何仅获取值的信息,请参见@redreggae的答案。
sachleen

Answers:



11

您应该使用该array_values() 功能


是的,就是这样。我在尝试之前尝试过,但是我一定做错了。这是我最终使用的最后一个函数... get_terms(array_values((get_taxonomies('','names'))),$ args)
ItsGeorge 2013年

0

创建一个新数组,在PHP中使用foreach循环将所有值从关联数组复制到一个简单数组中

      $data=Array(); //associative array

      $simple_array = array(); //simple array

      foreach($data as $d)
      {
            $simple_array[]=$d['value_name'];   
      }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.