PHP 显示客户端IP与服务器IP的代码
程序员文章站
2022-06-03 10:25:16
来看看代码: 复制代码 代码如下: echo "(1)浏览当前页面的用户的 ip 地址为:"; echo $_server['remote_addr']; echo "&l...
来看看代码:
复制代码 代码如下:
echo "(1)浏览当前页面的用户的 ip 地址为:";
echo $_server['remote_addr'];
echo "<br />";
echo "(2)浏览当前页面的用户的 ip 地址为:";
echo getenv('remote_addr');
echo "<br />";
echo "主机 www.baidu.com 的 ip 地址为:";
echo gethostbyname(<a href="http://www.baidu.com">www.baidu.com</a>);
它的输出结果为:
(1)浏览当前页面的用户的 ip 地址为:127.0.0.1
(2)浏览当前页面的用户的 ip 地址为:127.0.0.1
主机 www.baidu.com 的 ip 地址为:61.135.169.105
关于获取客户端的 ip 地址,有俩方法:
第一个是使用:
?$_server['remote_addr']
它正在浏览当前页面用户的 ip 地址,这里的输出结果为 127.0.0.1,因为这是在本地测试,输出的是我本地的环路地址。
第俩个是使用:
?getenv('remote_addr')
这里使用了函数 getenv : gets the value of an environment variable(得到各种环境变量的值),返回值:returns the value of the environment variable varname, or false on an error(失败的话返回 false).
关于获取服务器端的 ip 地址:
?gethostbyname(<a href="http://www.baidu.com">www.baidu.com</a>)
这里使用了函数 gethostbyname : get the ip address corresponding to a given internet host name(通过给定的一个主机名字而得到它的 ip 地址),返回值:returns the ip address of the internet host specified by hostname or a string containing the unmodified hostname on failure(失败的话返回原样的输入字符主机名).
注意这里的最后一句,也就是说,如果失败的话,它会将原样输出,例如:
?echo "无效主机 iwilldown 的 ip 地址为:";
echo gethostbyname("iwilldown");
输出:
?无效主机 iwilldown 的 ip 地址为:iwilldown
当然,这个可不是 ip 地址….
下一篇: 用PHP实现读取和编写XML DOM代码