J'ai un tableau comme suit:
function example() {
/* some stuff here that pushes items with
dynamically created key strings into an array */
return array( // now lets pretend it returns the created array
'firstStringName' => $whatEver,
'secondStringName' => $somethingElse
);
}
$arr = example();
// now I know that $arr contains $arr['firstStringName'];
J'ai besoin de trouver l'index de $arr['firstStringName']
pour que je puisse boucler array_keys($arr)
et renvoyer la chaîne de clé 'firstStringName'
par son index. Comment puis je faire ça?