获取客户端的真实IP地址
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取客户端的真实IP地址相关的知识,希望对你有一定的参考价值。
This function will fetch the real IP address of the user even if he is behind a proxy server.
function getRealIpAddr() { if (!emptyempty($_SERVER['HTTP_CLIENT_IP'])) { $ip=$_SERVER['HTTP_CLIENT_IP']; } elseif (!emptyempty($_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; }
以上是关于获取客户端的真实IP地址的主要内容,如果未能解决你的问题,请参考以下文章