【调度系统】广东民航医疗快线调度系统源代码
hzj
2025-08-14 1ce68427c1d414c39261a26bca710fbf4fd9a6e5
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");
//getchildren接口:获取指定行政区划的子级行政区划。https://lbs.qq.com/webservice_v1/guide-region.html
$map_url="https://apis.map.qq.com/ws/district/v1/getchildren";
 
$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;
 
?>