Tengo una matriz como la siguiente:
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'];
Necesito encontrar el índice de $arr['firstStringName']
para poder recorrer array_keys($arr)
y devolver la cadena de clave 'firstStringName'
por su índice. ¿Cómo puedo hacer eso?