如何在 php 7.1.1 中打印当前用户的 IP 地址
Posted
技术标签:
【中文标题】如何在 php 7.1.1 中打印当前用户的 IP 地址【英文标题】:how to print current user's ip address in php 7.1.1 【发布时间】:2017-03-31 21:46:22 【问题描述】:我正在尝试使用 $_SERVER['REMOTE_ADDR'] 或 getenv('REMOTE_ADDR') 获取当前用户的 IP 地址,在这两种情况下我都得到 ::1 。 我正在使用 php 7.1.1,任何人都可以帮助我如何获取当前用户的当前 IP 地址。
【问题讨论】:
Get the client IP address using PHP的可能重复 How to get the client IP address in PHP?的可能重复 【参考方案1】:如果您使用本地服务器,它将始终是 ::1 或本地 IP 地址。
$_SERVER['REMOTE_ADDR']
当它位于本地网络之外的服务器上时,将返回该 IP。
【讨论】:
【参考方案2】:$_SERVER['REMOTE_ADDR']
或$_SERVER['REMOTE_HOST']
看Get the client IP address using PHP
【讨论】:
以上是关于如何在 php 7.1.1 中打印当前用户的 IP 地址的主要内容,如果未能解决你的问题,请参考以下文章