PHP에서 배열에서 단일 값을 검색하는 방법 아래에서는 PHP에서 배열에서 단일 값을 검색하는 방법을 공유하겠습니다. 이는 좋은 참조 값이 있으며 도움이 되기를 바랍니다.
1. 배열 arr
var_dump(arr)의 값은 다음과 같습니다.
array (size=3) 'delete' => array (size=3) 0 => string 'HBSFlyRecode20170222-101501.txt' (length=31) 1 => string 'HBSFlyRecode20170222-105502.txt' (length=31) 2 => string 'HBSFlyRecode20170222-108803.txt' (length=31) 'new' => array (size=3) 0 => string 'HBSFlyRecode20170223-101504.txt' (length=31) 1 => string 'HBSFlyRecode20170223-105505.txt' (length=31) 2 => string 'HBSFlyRecode20170223-108806.txt' (length=31) 'old' => array (size=3) 0 => string 'HBSFlyRecode20170221-101507.txt' (length=31) 1 => string 'HBSFlyRecode20170221-105508.txt' (length=31) 2 => string 'HBSFlyRecode20170221-108809.txt' (length=31)
echo $arr['old'][0]; 打印出: HBSFlyRecode20170221-101507.txt
그러나 arr이 객체 형식인 경우 인쇄된 결과는 다음과 같습니다.
var_dump(arr) object(stdClass)[1] public 'delete' => array (size=3) 0 => string 'HBSFlyRecode20170222-101501.txt' (length=31) 1 => string 'HBSFlyRecode20170222-105502.txt' (length=31) 2 => string 'HBSFlyRecode20170222-108803.txt' (length=31) public 'new' => array (size=3) 0 => string 'HBSFlyRecode20170223-101504.txt' (length=31) 1 => string 'HBSFlyRecode20170223-105505.txt' (length=31) 2 => string 'HBSFlyRecode20170223-108806.txt' (length=31) public 'old' => array (size=3) 0 => string 'HBSFlyRecode20170221-101507.txt' (length=31) 1 => string 'HBSFlyRecode20170221-105508.txt' (length=31) 2 => string 'HBSFlyRecode20170221-108809.txt' (length=31)
$arr[' old'][0]에는 값이 있을 수 없으며 arr 객체 및 배열에 공통적인 foreach 메서드를 사용하여 값을 얻을 수 있습니다.
function getValue($arr){ foreach($arr as $key => $value){ if(is_array($value)){ getValue($value); }else{ echo $value."<br>"; } } }
arr이 객체 형식인 경우, 다음은 객체를 배열 형식으로 변환할 수 있는 예입니다. 바로가기:
1. $object_json = json_encode($arr); 얻는 것은 객체입니다
$json = json_encode($arr,true); 당신이 얻는 것은 순수한 json
2입니다. json_decode($json)으로 얻는 것은 배열 객체
json_decode($object_json,true)로 얻는 것이고 json_decode($json,true)로 얻는 것은 다음과 같습니다. an array
요약하자면, 다음과 같은 방법으로 배열 객체를 배열로 변환할 수 있습니다:
arr=jsondecode(jsonencode(arr=jsondecode(jsonencode(arr,true),true);
이 문제는 프로젝트에서 발견되었습니다. PHP에서 json과 배열을 변환할 때 권장됩니다. , json_encode() 및 json_decode()의 두 번째 매개변수는 true로 추가되어야 합니다. 즉,
json_encode(arr,true);jsondecode(arr,true);jsondecode(json,true);입니다.
위 내용은 PHP의 배열에서 단일 값을 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!