Home > Backend Development > PHP Tutorial > 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
Release: 2016-07-13 17:53:18
Original
2077 people have browsed it

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 /;...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template