0

经过长时间的搜索和实施,我在这里需要你的帮助..我正在使用谷歌 api 来计算纬度;为此,我在代码中调用了下面提到的 api

$jsondata=file_get_contents(@'maps.googleapis.com/maps/api/geocode/json?address="75300+Karachi+PK"&sensor=false’');

但它返回空数组数据;但是如果我在浏览器上输入相同的 api url,http://maps.googleapis.com/maps/api/geocode/json?address=%2275300+Karachi+PK%22&sensor=false&#8217那么它会显示数组中的数据

我在搜索中得到的主要是错误是因为超过 2500 个请求,但是我显然没有发送 2500 个请求。

非常感谢任何帮助;请指导 id 我的代码有任何错误

4

2 回答 2

1
$jsondata=file_get_contents('http://maps.googleapis.com/maps/api/geocode/json?address="75300+Karachi+PK"&sensor=false’');
于 2013-09-06T07:30:06.313 回答
0

http://当你打电话时,你在 url中丢失了file_get_contents

@ps 并在函数调用中删除它。

于 2013-09-06T07:26:52.690 回答