码迷,mamicode.com
首页 > Web开发 > 详细

php获取用户ip

时间:2014-08-27 12:44:17      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   for   ar   div   cti   log   on   

function getip(){
	if (getenv(‘HTTP_CLIENT_IP‘))
	{
		$ip = getenv(‘HTTP_CLIENT_IP‘); //可伪造
	}
	elseif (getenv(‘HTTP_X_FORWARDED_FOR‘))
	{
		$ip = getenv(‘HTTP_X_FORWARDED_FOR‘); //可伪造
	}
	elseif (getenv(‘HTTP_X_FORWARDED‘))
	{
		$ip = getenv(‘HTTP_X_FORWARDED‘);
	}
	elseif (getenv(‘HTTP_FORWARDED_FOR‘))
	{
		$ip = getenv(‘HTTP_FORWARDED_FOR‘);
	}
	elseif (getenv(‘HTTP_FORWARDED‘))
	{
		$ip = getenv(‘HTTP_FORWARDED‘);
	}
	else
	{
		$ip = $_SERVER[‘REMOTE_ADDR‘];
	}
	return $ip;
}

  php获取用户ip

php获取用户ip

标签:blog   http   io   for   ar   div   cti   log   on   

原文地址:http://www.cnblogs.com/chenzhaojx/p/3939049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!