언어/PHP
배열 번호 찾기, 배열 위치 찾기 array_search 함수
greathuman
2016. 3. 9. 16:03
$_list = array(
0=>"a",
1=>"b",
2=>"c",
3=>"d",
);
$key = array_search('c', $_list);
echo $key;
결과 : 2