Skip to content

Instantly share code, notes, and snippets.

@MoT3rror
Created December 2, 2015 04:55
Show Gist options
  • Save MoT3rror/d5c6f21a3f42749ff931 to your computer and use it in GitHub Desktop.
Save MoT3rror/d5c6f21a3f42749ff931 to your computer and use it in GitHub Desktop.
Get Real IP
<?php
function getRealIpAddr()
{
if (!empty($_SERVER['HTTP_CLIENT_IP']))
{
$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;
}
echo getRealIpAddr();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment