Forked from stavrossk/PHP Real client IP address retriever.php
Created
June 7, 2021 06:05
-
-
Save uzbekdev1/a86b7729ac27baa52785b8fada3b8f9f to your computer and use it in GitHub Desktop.
PHP Snippet: Get Real IP Address of Client: This function will fetch the real IP address of the user even if he is behind a proxy server.
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 | |
function getRealIpAddr() | |
{ | |
if ( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) | |
{ | |
$ip = $_SERVER['HTTP_CLIENT_IP']; | |
} | |
elseif( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) | |
//to check ip passed 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