web-dev-qa-db-ja.com

PHPでJSON配列を検索する方法

JSON配列があります

{
  "people":[
    {
      "id": "8080",
      "content": "foo"
    },
    { 
      "id": "8097",
      "content": "bar"
    }
  ]
}

8097を検索してコンテンツを取得するにはどうすればよいですか?

15
consindo

json_decode 関数はあなたを助けるでしょう:

$str = '{
  "people":[
    {
      "id": "8080",
      "content": "foo"
    },
    { 
      "id": "8097",
      "content": "bar"
    }
  ]
}';

$json = json_decode($str);
foreach($json->people as $item)
{
    if($item->id == "8097")
    {
        echo $item->content;
    }
}
24
Tim Cooper

json_decode() それは他の配列またはStdClassオブジェクトと同様に扱います

$arr = json_decode('{
  "people":[
    {
      "id": "8080",
      "content": "foo"
    },
    { 
      "id": "8097",
      "content": "bar"
    }
  ]
}',true);

$results = array_filter($arr['people'], function($people) {
  return $people['id'] == 8097;
});


var_dump($results);

/* 
array(1) {
  [1]=>
  array(2) {
    ["id"]=>
    string(4) "8097"
    ["content"]=>
    string(3) "bar"
  }
}
*/
17
Mchl

「人」オブジェクトの数がかなり少ない場合は、前の回答でうまくいきます。あなたの例が8000の範囲のIDを持っていることを考えると、すべての単一のIDを見ることは理想的ではないかもしれないと思います。そのため、正しい人物を見つける前にはるかに少数の人物を調べる別の方法を次に示します(人物がID順になっている限り)。

//start with JSON stored as a string in $jsonStr variable
//  pull sorted array from JSON
$sortedArray = json_decode($jsonStr, true);
$target = 8097; //this can be changed to any other ID you need to find
$targetPerson = findContentByIndex($sortedArray, $target, 0, count($sortedArray));
if ($targetPerson == -1) //no match was found
    echo "No Match Found";


function findContentByIndex($sortedArray, $target, $low, $high) {
    //this is basically a binary search

    if ($high < low) return -1; //match not found
    $mid = $low + (($high-$low) / 2)
    if ($sortedArray[$mid]['id'] > $target) 
        //search the first half of the remaining objects
        return findContentByIndex($sortedArray, $target, $low, $mid - 1);
    else if ($sortedArray[$mid]['id'] < $target)
        //search the second half of the remaining objects
        return findContentByIndex($sortedArray, $target, $mid + 1, $high);
    else
        //match found! return it!
        return $sortedArray[$mid];
}
5
Jeffrey Blake