如何使用 php 识别每个访问者的国家/地区?
海朋友,当他们访问我的 php 网站时,我需要用户所在国家/地区。根据他的国家,当他们上传一些批量信息时,我必须做一些检查。
如何使用 php.ini 找到访问者所在国家/地区
Hai friends I need user country when they visit my php website. According to his country I have to do some checking when they upload some bulk informations.
How can I find the visitor country using php.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 没有内置方法来确定网站访问者的位置。
您可以自动执行的最佳操作是在 IP 到位置数据库中查找他们的 IP 地址。
您可以免费从 MaxMind 获取一个。他们有一个 PHP API 可用于使用数据库。
PHP has no built-in method to determine the location of a website visitor.
The best you can do automatically is to look up their IP address in an IP-to-location database.
You can get one for free from MaxMind. They have a PHP API available for using the database.