Heim >Backend-Entwicklung >PHP-Tutorial >高德webapi-PHP CURL 获取高德web API 时返回不全

高德webapi-PHP CURL 获取高德web API 时返回不全

WBOY
WBOYOriginal
2016-06-02 11:27:451364Durchsuche

高德webapiphpcurl

我直接使用地址栏返回的内容是这样的:
{"status":"1","info":"OK","infocode":"10000","count":"1","geocodes":[{"formatted_address":"北京市朝阳区阜通东大街|6号","province":"北京市","citycode":"010","city":"北京市","district":"朝阳区","township":[],"neighborhood":{"name":[],"type":[]},"building":{"name":[],"type":[]},"adcode":"110105","street":[],"number":[],"location":"116.481229,39.990400","level":"门牌号"}]}
但使用php CRUL 返回的只有:{"status":"1","info":"OK","infocode":"10000","count":"0","geocodes":[]}
geocodes里面的内容没有
这是我的php后台代码片段
$requesturl="http://restapi.amap.com/v3/geocode/geo?address=北京市朝阳区阜通东大街6号&output=json&key=8ca8e28cdd92fed465d899e4798cff39";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $requesturl);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$info=curl_exec($ch);
curl_close($ch);
echo json_decode($info, true);

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn