Eu tenho uma matriz da seguinte maneira:
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'];
Preciso descobrir o índice de $arr['firstStringName']
para que eu possa percorrer array_keys($arr)
e retornar a string de chave 'firstStringName'
pelo seu índice. Como eu posso fazer isso?