9
PHP-배열 값의 키 이름 가져 오기
다음과 같은 배열이 있습니다. 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 …