如何在 php 中解析 JSON 谷歌地图 JSON
我已经在 xml 中完成了,但坐标驱动方向并不像我使用 JSON 获得的那样完整,我们如何在 php 中使用 JSON 获得所有坐标驱动?
如果我们使用 xml
$xml = simplexml_load_file('http://maps.googleapis.com/maps/api/directions/xml?origin='.$origin.'&destination='.$dest.'&sensor=false');
$startlat = $xml->xpath("/DirectionsResponse/route/leg/step/start_location/lat");
$startlng = $xml->xpath("/DirectionsResponse/route/leg/step/start_location/lng");
$distanceeach = $xml->xpath("/DirectionsResponse/route/leg/step/distance/value");
$distance = $xml->xpath("/DirectionsResponse/route/leg/distance/value");
但是如何处理json?如果我们使用 xml,我希望我的变量 $startlat、$startlng 等包含相同的值