Je voudrais convertir le tableau :
Array (
[category] => category
[post_tag] => post_tag
[nav_menu] => nav_menu
[link_category] => link_category
[post_format] => post_format
)
a
array(category, post_tag, nav_menu, link_category, post_format)
J'ai essayé
$myarray = 'array('. implode(', ',get_taxonomies('','names')) .')';
qui s'échappe :
array(category, post_tag, nav_menu, link_category, post_format)
Donc je peux faire
echo $myarray;
echo 'array(category, post_tag, nav_menu, link_category, post_format)';
et ça imprime exactement la même chose.
...mais je ne peux pas utiliser $myarray
dans une fonction à la place du tableau entré manuellement parce que la fonction ne le voit pas comme un tableau ou quelque chose comme ça.
Qu'est-ce que je rate ici ?