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 ?>
http://www.bkjia.com/PHPjc/478043.htmlwww.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 /;...