在php中检测用户控制的包?
我想知道检测用户访问的国家/地区的最佳软件包是什么?
我正在使用 php/mysql..
I want to know what is the best package to detect country which user is visiting from?
I am using php/mysql..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为没有一个有保证的方法,但有一些选择:
HTTP_ACCEPT_LANGUAGE
标头($_SERVER
)I think there is not a guaranteed way but there are some options:
HTTP_ACCEPT_LANGUAGE
header($_SERVER
)您可以下载 MaxMind GeoLite Country 数据库,并使用它来查找用户的 IP 以确定他们的 IP国家。
该数据库有付费版本,但我发现免费数据库的准确性已经足够了。
You can download the MaxMind GeoLite Country database, and use that to lookup the IP of user to determine their country.
There are paid versions of that database, but I've found the accuracy of the free database more than sufficient.