Created
May 19, 2012 19:10
-
-
Save apphp-snippets/2732036 to your computer and use it in GitHub Desktop.
This code allows to get the IP address from which the user is viewing the current page.
This file contains hidden or 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
<?php | |
/* Source: http://www.apphp.com/index.php?snippet=php-get-remote-ip-address */ | |
function getRemoteIPAddress(){ | |
$ip = isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : ''; | |
return $ip; | |
} | |
/* If your visitor comes from proxy server you have use another function | |
to get a real IP address: */ | |
function getRealIPAddress(){ | |
if(!empty($_SERVER['HTTP_CLIENT_IP'])){ | |
//check ip from share internet | |
$ip = $_SERVER['HTTP_CLIENT_IP']; | |
}else if(!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