次のような配列があります:
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'];
のインデックスを見つけて$arr['firstStringName']
ループしarray_keys($arr)
、'firstStringName'
そのインデックスでキー文字列を返すことができるようにする必要があります。どうやってやるの?
達成しようとしていることのユースケースについて詳しく説明できますか?
—
nikc.org 2012年