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

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-02 11:27:45
Original
1408 people have browsed it

高德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);

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template