Created
August 24, 2022 11:57
-
-
Save encoderit-arman/df43a5b186dbfdaa166269ca0bbad379 to your computer and use it in GitHub Desktop.
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
function get_the_user_ip() | |
{ | |
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 apply_filters('wpb_get_ip', $ip); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment