我想在php中以xml格式从google地图中读取start_address

时间:2014-11-26 05:54:49

标签: google-maps map xml-parsing

我想使用start_addressGoogle Map PHP解析JSON节点,我尝试使用xml格式,但是我的现有系统有xml所以我需要在xml中解析。我该如何解析{{1}}?

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

$mapUrl = 'http://maps.googleapis.com/maps/api/directions/xml?origin=london&destination=heathrow&sensor=false';
$xml_obj = simplexml_load_file($mapUrl);
echo $xml_obj->route->leg->start_address[0]; // String Output: "London, UK"

检查SimpleXML