Home >php教程 >php手册 >PHP 获取客户端与服务器的IP的实例代码

PHP 获取客户端与服务器的IP的实例代码

WBOY
WBOYOriginal
2016-06-13 10:40:27955browse

PHP 获取客户端与服务器的IP的实例代码如下:

  1. echo "(1)浏览当前页面的用户的 IP 地址为:";
  2. echo $_SERVER[REMOTE_ADDR];
  3. echo "
    ";
  4. echo "(2)浏览当前页面的用户的 IP 地址为:";
  5. echo getenv(REMOTE_ADDR);
  6. echo "
    ";
  7. echo "主机 www.ite5e.com 的 IP 地址为:";
  8. echo gethostbyname(www.baidu.com);
  9. ?>

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