-1

我想将查看器的位置放在我的网站上。

示例

观众居住在“悉尼,新南威尔士州,澳大利亚”,所以网站上写着“悉尼,新南威尔士州,澳大利亚

或者

观众居住在“美国华盛顿特区”,所以在网站上写着“美国华盛顿特区

4

1 回答 1

1

Check Live form here- http://uposonghar.com/personal/ip/

Use this to get user country by their IP-

<?PHP
function visitor_country()
{
$client  = @$_SERVER['HTTP_CLIENT_IP'];
$forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
$remote  = $_SERVER['REMOTE_ADDR'];
$result  = "Unknown";
if(filter_var($client, FILTER_VALIDATE_IP))
{
    $ip = $client;
}
elseif(filter_var($forward, FILTER_VALIDATE_IP))
{
    $ip = $forward;
}
else
{
    $ip = $remote;
}

$ip_data = @json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip=".$ip));

if($ip_data && $ip_data->geoplugin_countryName != null)
{
    $result = $ip_data->geoplugin_countryName;
}

return $result;
}

echo visitor_country(); // Output Coutry name [Ex: United States]
?>
于 2013-08-18T13:00:52.767 回答