How to get users’ IP Address with PHP

Q

Useful PHP Code Snippets for Developers - How to get users’ IP Address with PHP

✍: Guest

A
function getRealIpAddr()
 
{
 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;
}

2015-06-19, 1114🔥, 0💬