Ho un array come il seguente:
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'];
Devo scoprire l'indice di in $arr['firstStringName']
modo che io sia in grado di scorrere array_keys($arr)
e restituire la stringa di chiavi 'firstStringName'
dal suo indice. Come lo posso fare?