我想通过
IP 地址获取我当前(地区、区号或邮政编码、州、国家/地区)的位置。
我在代码下面得到 IP 地址。
$myip = $_SERVER['REMOTE_ADDR'];
output :- 122.161.20.5
我的代码:-
<?php
$ip_addr = '122.161.20.5';
$geoplugin = unserialize( file_get_contents('http://www.geoplugin.net/php.gp?ip='.$ip_addr) );
if ( is_numeric($geoplugin['geoplugin_latitude']) && is_numeric($geoplugin['geoplugin_longitude']) ) {
$lat = $geoplugin['geoplugin_latitude'];
$long = $geoplugin['geoplugin_longitude'];
}
echo '<pre>';
print_r($geoplugin);
echo '<pre>';
?>
IP 地址上方提供新德里的位置,但这不是我当前的位置。
请帮我。