Skip to content

Instantly share code, notes, and snippets.

@jwv
Created September 2, 2014 02:02
Show Gist options
  • Select an option

  • Save jwv/b4d5b1d08593425f7f81 to your computer and use it in GitHub Desktop.

Select an option

Save jwv/b4d5b1d08593425f7f81 to your computer and use it in GitHub Desktop.
Get Real IP
function getRealIPAddr()
{
if (!empty($_SERVER['HTTP_CLIENT_IP'])) //check ip from share internet
{
$ip=$_SERVER['HTTP_CLIENT_IP'];
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) //to check ip is pass from proxy
{
$ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
}
else
{
$ip=$_SERVER['REMOTE_ADDR'];
}
return $ip;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment