-2
我有當前的經度和緯度,這與如何獲得地區名稱或代碼在PHP中。請幫幫我。從php的經度和緯度獲取地區名稱
我有當前的經度和緯度,這與如何獲得地區名稱或代碼在PHP中。請幫幫我。從php的經度和緯度獲取地區名稱
<?php
$geocode=file_get_contents('http://maps.googleapis.com/maps/api/geocode/json?latlng=48.283273,14.295041&sensor=false');
$output= json_decode($geocode);
echo $output->results[0]->formatted_address;
?>
這將在得到完整的地址,您只需通過LAT長在該網址
您可以使用geoplugin
。
嘗試這一次,
<?php
$geoPlugin_array = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=###.###.###.###'));//Replcae ###.###.###.### with your ip address.
echo '<pre>';
print_r($geoPlugin_array);
echo '</pre>';
?>
希望這可以幫助你。
謝謝KARAN。它正在工作 – Arya