I have an array, let's call it $menus, that contains something like this:
Array(
[Main] => Array (
[menu_name] => Main
[title] => Main Menu
)
[Nav] => Array (
[menu_name] => Navigation
[title] => Navigation Menu
)
[Custom] => Array (
[menu_name] => User Custom Menu
[title] => My Menu
)
)
...and so forth.
I need to create a new array that contains only a list of menu names. So if I were going to get, say, just the Nav menu's name, I'd do
$module_menu_name = $menus [Nav][menu_name];
and now $module_menu_name = "Navigation", right?
But how do I get the menu_name of each item in an associative array?
Something like:
$menu_names = Array();
foreach($menus as $menu){
$module_menu_names[] => ???['menu_name'];
}
... and this is where I get stuck. What do I put where those question marks are? Is this even the right way to build this array?

arrayis fine, but what exactly do you want to do with themenu_names? – billyonecan May 15 '12 at 14:05