Tôi có một mảng như sau:
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'];
Tôi cần tìm ra chỉ mục $arr['firstStringName']
để tôi có thể lặp qua array_keys($arr)
và trả về chuỗi khóa 'firstStringName'
theo chỉ mục của nó. Làm thế nào tôi có thể làm điều đó?