0
如何解析JSON谷歌地圖JSON在PHP如何解析JSON谷歌地圖JSON在PHP
我必須做的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嗎? ,我想我的變量$ startlat,$ startlng等,包含相同的值,如果我們做與XML
你可以給我一個提示? – sephtian 2012-07-08 23:31:50
我用編碼快照編輯了我的答案... – devdRew 2012-07-10 06:18:31
hai @devdRew你能給我完整的代碼嗎?我卡在這裏:( – sephtian 2012-07-27 09:22:32