remote_addr not returning IPv4 address(remote_addr 不返回 IPv4 地址)
问题描述
我在本地主机上使用 xampp,当我使用 $_SERVER["REMOTE_ADDR"]
它返回 ::1
(也在 phpinfo()代码>).为什么这样做?我希望它返回一个正常的 IP 地址,如 127.0.0.1.我的操作系统是 windows vista.
I am using xampp on localhost and when I use $_SERVER["REMOTE_ADDR"]
it returns ::1
(also does this in phpinfo()
). Why does it do this? I want it to return a normal ip address like 127.0.0.1. My operating system is windows vista.
推荐答案
::1
是一个 IPv6 地址 和 0:0:0:0:0:0:0:1
的缩写,即 环回地址到本地机器.所以 ::1
与 127.0.0.1
相同,只是通过 IPv6 而不是 IPv4.
::1
is an IPv6 address and an abbreviation for 0:0:0:0:0:0:0:1
that is the loopback address to the local machine. So ::1
is the same as 127.0.0.1
only via IPv6 instead of IPv4.
这篇关于remote_addr 不返回 IPv4 地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:remote_addr 不返回 IPv4 地址
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- Laravel 仓库 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01