我目前正在尝试解析 MapQuest Traffic API,但是当我尝试显示事件时,什么都没有出现,如果我在 php 中执行“如果为空”,它会返回空。
这是代码:
<?php
$mysongs = simplexml_load_file("http://www.mapquestapi.com/traffic/v1/incidents?key=Fmjtd%7Cluuan1u2nh%2C2a%3Do5-96rw5u&callback=handleIncidentsResponse&boundingBox=$_GET[a], $_GET[b], $_GET[c], $_GET[d]&filters=construction,incidents&inFormat=kvp&outFormat=xml");
echo $mysongs->Incidents[0]->Incident[0]->fullDesc;
?>
我传递的参数:?a=33.352532499999995&b=-118.2324383&c=34.352532499999995&d=-117.2324383。
提前致谢!