다음과 같은 배열이 있습니다.
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