如何在PHP中访问JSON解码数组

时间:2013-02-23 18:25:16

标签: php json

我将JSON数据类型从javascript返回到PHP,我使用json_decode($data, true)将其转换为关联数组,但是当我尝试使用它时使用关联index,我得到错误"Undefined index"返回的数据看起来像这样

array(14) { [0]=> array(4) { ["id"]=> string(3) "597" ["c_name"]=> string(4) "John" ["next_of_kin"]=> string(10) "5874594793" ["seat_no"]=> string(1) "4" } 
[1]=> array(4) { ["id"]=> string(3) "599" ["c_name"]=> string(6) "George" ["next_of_kin"]=> string(7) "6544539" ["seat_no"]=> string(1) "2" } 
[2]=> array(4) { ["id"]=> string(3) "601" ["c_name"]=> string(5) "Emeka" ["next_of_kin"]=> string(10) "5457394839" ["seat_no"]=> string(1) "9" } 
[3]=> array(4) { ["id"]=> string(3) "603" ["c_name"]=> string(8) "Chijioke" ["next_of_kin"]=> string(9) "653487309" ["seat_no"]=> string(1) "1" }  

请问,如何在PHP中访问此类数组?谢谢你的任何建议。

6 个答案:

答案 0 :(得分:55)

当您将true作为第二个参数传递给json_decode时,在上面的示例中,您可以检索与以下内容类似的数据:

$myArray = json_decode($data, true);
echo $myArray[0]['id']; // Fetches the first ID
echo $myArray[0]['c_name']; // Fetches the first c_name
// ...
echo $myArray[2]['id']; // Fetches the third ID
// etc..

如果您没有将true作为第二个参数传递给json_decode,则会将其作为对象返回:

echo $myArray[0]->id;

答案 1 :(得分:7)

$data = json_decode($json, true);
echo $data[0]["c_name"]; // "John"


$data = json_decode($json);
echo $data[0]->c_name;      // "John"

答案 2 :(得分:3)

$data = json_decode(...);
$firstId = $data[0]["id"];
$secondSeatNo = $data[1]["seat_no"];

就像这样:)

答案 3 :(得分:1)

当您将第二个参数传递给json_decode时,在上面的示例中,您可以检索与以下内容类似的数据:

<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';

var_dump(json_decode($json));
var_dump(json_decode($json, true));

?>

答案 4 :(得分:0)

如果要循环到多维数组,可以像这样使用foreach:

foreach($data as $users){
   foreach($users as $user){
      echo $user['id'].' '.$user['c_name'].' '.$user['seat_no'].'<br/>';
   }
}

答案 5 :(得分:0)

这可能会帮助您!

$latlng='{"lat":29.5345741,"lng":75.0342196}';
$latlng=json_decode($latlng,TRUE); // array
echo "Lat=".$latlng['lat'];
echo '<br/>';
echo "Lng=".$latlng['lng'];
echo '<br/>';



$latlng2='{"lat":29.5345741,"lng":75.0342196}';
$latlng2=json_decode($latlng2); // object
echo "Lat=".$latlng2->lat;
echo '<br/>';
echo "Lng=".$latlng2->lng;
echo '<br/>';