function addresstolatlag($address){$abc = "xxx学校(xx路店)";$key="24fb21b484f89f212dc3f4fd016e2b4d";$address = $abc;$regeo_url="https://restapi.amap.com/v3/geocode/geo";$address_location=$regeo_url."?output=JSON&address=$address&key=$key";$data_location=file_get_contents($address_location);$arr_return=[];$result_local=json_decode($data_location,true);if($result_local['status'] == 1 && $result_local['infocode']== 10000){$location=$result_local['geocodes'][0]['location'];$arr=explode(',',$location);$arr_return['lat']=$arr[1];$arr_return['log']=$arr[0];}return $arr_return;
}