Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 PHP 网络服务中获取客户端的 IP 地址?
我想从用户那里获取 IP 地址,但我不想在我的 php.ini 文件中打开注册全局变量。有没有办法解决这个问题并仍然获取 IP 地址?
不需要注册 Globals 来获取 IP 地址,为什么会这样呢?
获取IP:
$ip = $_SERVER['REMOTE_ADDR'];