I can't understand how to get numeric index of "Index1" in such a structure:
$arr = array('Index','Index1' => array("one","two","three"),'Index2');
i'm trying to use array_search like so:
$index = array_search("Index1",$arr);
but it doesn't work; Thanks