我的网站上有一个联系表,我想知道用户的 IP 地址是什么,我在本地测试XAMPP上尝试了这个 PHP 代码:
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;
}
$ipaddress= getRealIpAddr();
echo "my ip address is" . $ipaddress;
但结果总是像
"my ip address is::1",
我不知道代码有什么问题。