Home  >  Article  >  Backend Development  >  php使用$_SERVER["REMOTE_ADDR"]获取访问IP地址,_serverremote_addr_PHP教程

php使用$_SERVER["REMOTE_ADDR"]获取访问IP地址,_serverremote_addr_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:56:161394browse

php使用$_SERVER["REMOTE_ADDR"]获取访问IP地址,_serverremote_addr



print "您的IP地址是:";


if(!empty($_SERVER["HTTP_CLIENT_IP"])){
  $cip = $_SERVER["HTTP_CLIENT_IP"];
}
elseif(!empty($_SERVER["HTTP_X_FORWARDED_FOR"])){
  $cip = $_SERVER["HTTP_X_FORWARDED_FOR"];
}
elseif(!empty($_SERVER["REMOTE_ADDR"])){
  $cip = $_SERVER["REMOTE_ADDR"];
}
else{
  $cip = "无法获取!";
}
print $cip;

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/988861.htmlTechArticlephp使用$_SERVER[REMOTE_ADDR]获取访问IP地址,_serverremote_addr print "您的IP地址是:"; if(!empty($_SERVER["HTTP_CLIENT_IP"])){ $cip = $_SERVER["HTTP_CLIENT_IP"]; } e...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn