如何通过 PHP 从复杂的 json 中获取特定数据

我正在尝试打印特定数据:


locations -> latLng -> lat

所以我的输出将是:32.074559


我试过这个:


$json = file_get_contents('THE API URL');

$obj = json_decode($json, true);        


echo $obj['locations']['latLng']['lat'];

但它不起作用,什么都不显示......


holdtom
浏览 143回答 1
1回答

跃然一笑

她是一个工作示例:echo $obj['results'][0]['locations'][0]['latLng']['lat'];输出:32.074559
打开App,查看更多内容
随时随地看视频慕课网APP