Home  >  Article  >  Backend Development  >  How to display server IP, port and client IP in php_PHP tutorial

How to display server IP, port and client IP in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:53:182030browse

01

02 echo "The current page server IP address is:";

03 echo $_SERVER["SERVER_ADDR"];

04 echo "
";

05 echo "The current client IP address is:";

06 echo $_SERVER["REMOTE_ADDR"];

07 echo "
"; www.2cto.com

08 echo "The current port is:";

09 echo $_SERVER["SERVER_PORT"];

10 ?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478043.htmlTechArticle01?php 02 echo The current page server IP address is:; 03 echo $_SERVER[SERVER_ADDR]; 04 echo br /; 05 echo The current client IP address is:; 06 echo $_SERVER[REMOTE_ADDR]; 07 echo br /;...
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