可能重复:
在 PHP 中提取 JSONP 结果集
$url_address = "http://geocoder.ca/?latt=" . $lat . "&longt=" . $lon . "&reverse=1&allna=1&geoit=xml&corner=1&jsonp=1&callback=getinfo";
$addressSet = json_decode(file_get_contents($url_address), true);
当我尝试访问时$addressSet[0]
没有任何东西
所以http://geocoder.ca/?latt=42.04&longt=-87.79&reverse=1&allna=1&geoit=xml&corner=1&jsonp=1&callback=getinfo返回数据,我该如何解析呢?