Last active
August 29, 2015 14:05
-
-
Save Kcko/ea1ff9b8fe98f3946376 to your computer and use it in GitHub Desktop.
Komplexní IP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
function getLocationInfoByIp(){ | |
$client = @$_SERVER['HTTP_CLIENT_IP']; | |
$forward = @$_SERVER['HTTP_X_FORWARDED_FOR']; | |
$remote = @$_SERVER['REMOTE_ADDR']; | |
$result = array('country'=>'', 'city'=>''); | |
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['country'] = $ip_data->geoplugin_countryCode; | |
$result['city'] = $ip_data->geoplugin_city; | |
} | |
return $result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment