Skip to content

Instantly share code, notes, and snippets.

@ucheng
Created May 22, 2021 15:15
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 ucheng/7373694d40360184bb5284179c48c56a to your computer and use it in GitHub Desktop.
Save ucheng/7373694d40360184bb5284179c48c56a to your computer and use it in GitHub Desktop.
get customer ip
/**
* Get customer ip
*
* @return string
*/
private 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 $ip;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment