【调度系统】广东民航医疗快线调度系统源代码
wzp
2024-12-05 8a09f655eace34e9c90bbfc711eedb7a69e4e068
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");
//逆地址解析(坐标位置描述) https://lbs.qq.com/webservice_v1/guide-gcoder.html
$map_url="https://apis.map.qq.com/ws/geocoder/v1/";
 
$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;
 
?>