24

我从to返回了一个JSON数据类型的数组,我曾经将它转换为关联数组,但是当我尝试使用 associative 使用它时,我收到错误返回的数据看起来像这样javascriptPHPjson_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?感谢您的任何建议。

4

6 回答 6

67

当您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;
于 2013-02-23T18:28:52.100 回答
7
$data = json_decode($json, true);
echo $data[0]["c_name"]; // "John"


$data = json_decode($json);
echo $data[0]->c_name;      // "John"
于 2013-02-23T18:28:51.313 回答
3
$data = json_decode(...);
$firstId = $data[0]["id"];
$secondSeatNo = $data[1]["seat_no"];

像这样 :)

于 2013-02-23T18:28:34.813 回答
1

这可能会帮助你!

$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/>';
于 2019-05-01T05:25:42.790 回答
1

当您将 true 作为第二个参数传递给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));

?>
于 2017-03-09T13:10:11.843 回答
0

当你想循环进入一个多维数组时,你可以像这样使用 foreach:

foreach($data as $users){
   foreach($users as $user){
      echo $user['id'].' '.$user['c_name'].' '.$user['seat_no'].'<br/>';
   }
}
于 2014-05-26T11:49:45.537 回答