2017-07-25 79 views

回答

1
<?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長在該網址

+0

謝謝KARAN。它正在工作 – Arya

0

您可以使用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>'; 
?> 

希望這可以幫助你。