Skip to content

Instantly share code, notes, and snippets.

@Lulalaby
Created April 14, 2020 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lulalaby/a5124091282d7e8ea81fcf6fa86bf722 to your computer and use it in GitHub Desktop.
Save Lulalaby/a5124091282d7e8ea81fcf6fa86bf722 to your computer and use it in GitHub Desktop.
<?php
if (!empty($_SERVER["HTTP_CLIENT_IP"]))
{
//check for ip from share internet
$ip = $_SERVER["HTTP_CLIENT_IP"];
}
elseif (!empty($_SERVER["HTTP_X_FORWARDED_FOR"]))
{
// Check for the Proxy User
$ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
}
else
{
$ip = $_SERVER["REMOTE_ADDR"];
}
// This will print user's real IP Address
// does't matter if user using proxy or not.
echo $ip;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment