1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <?php
| header("Content-Type: text/html; charset=utf-8");
| //地点搜索(search接口)
| $map_url="https://apis.map.qq.com/ws/place/v1/search";
|
| $arrayREQUEST=$_REQUEST;
| $str='';
| foreach($arrayREQUEST as $k=>$v){
| $str=$str.$k.'='.$v.'&';
| }
| $str=rtrim($str,'&');
|
| $GET_data=$str;
| //echo $GETURL;exit;
|
| $mapdata_url=$map_url."?".$GET_data;
| $mapdatainfo=file_get_contents($mapdata_url);
|
| echo $mapdatainfo;
|
| ?>
|
|