J'ai un tableau comme le suivant :
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'];
Je dois trouver l'index de $arr['firstStringName']
de sorte que je puisse faire une boucle à travers array_keys($arr)
et retourner la chaîne de clés 'firstStringName'
par son indice. Comment puis-je faire cela ?
0 votes
Pouvez-vous élaborer un cas d'utilisation de ce que vous essayez d'obtenir ?