Home >php教程 >php手册 >php显示服务器IP、端口和客户端IP的方法

php显示服务器IP、端口和客户端IP的方法

WBOY
WBOYOriginal
2016-06-13 10:51:381356browse

01

02 echo "当前页面服务器IP地址为:"; 

03 echo  $_SERVER["SERVER_ADDR"]; 

04 echo "
"; 

05 echo "当前客户端IP地址为:"; 

06 echo  $_SERVER["REMOTE_ADDR"]; 

07 echo "
";  www.2cto.com

08 echo "当前端口为:"; 

09 echo $_SERVER["SERVER_PORT"]; 

10 ?>

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
Previous article:PHP显示IP的代码Next article:[PHP]识别图片主色调