You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
namespace tencent\map;
|
|
|
|
class District extends Base
|
|
{
|
|
|
|
/**
|
|
* 获取全部省市区三级行政区划
|
|
* @date 2021-02-04
|
|
*/
|
|
public function getDistrict()
|
|
{
|
|
$key = $this->config['key'];
|
|
$url = $url = $this->url . "district/v1/list?key=$key";
|
|
|
|
$result = http_data_get($url);
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|