Skip to content

Instantly share code, notes, and snippets.

@jeweltheme
Forked from mrkpatchaa/get_ip_address_php
Last active May 5, 2017 19:28
Show Gist options
  • Save jeweltheme/f694b2c8d5fb4935132bbed2cf50d645 to your computer and use it in GitHub Desktop.
Save jeweltheme/f694b2c8d5fb4935132bbed2cf50d645 to your computer and use it in GitHub Desktop.
Get user ip address in php
<?PHP
function getUserIP()
{
$client = @$_SERVER['HTTP_CLIENT_IP'];
$forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
$remote = $_SERVER['REMOTE_ADDR'];
if(filter_var($client, FILTER_VALIDATE_IP))
{
$ip = $client;
}
elseif(filter_var($forward, FILTER_VALIDATE_IP))
{
$ip = $forward;
}
else
{
$ip = $remote;
}
return $ip;
}
$user_ip = getUserIP();
echo $user_ip; // Output IP address [Ex: 177.87.193.134]
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment