如何在我的 Web 应用程序中实施基于位置的服务?除了 $_SERVER['REMOTE_ADDR'] .. 在 PHP 中
我想知道如何在我的网站中实现基于位置的服务,在那里我可以找到访问我的网站的用户的确切位置..我尝试使用 $_SERVER['REMOTE_ADDR'],但它给出了 ISP IP ..这是有点不准确..
提前致谢。
I want to know how to implement Location Based service in my website where i can find the exact location of the user who is accessing my site.. I tried with $_SERVER['REMOTE_ADDR'], but its giving ISP IP .. which is a bit inaccurate..
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最近使用 GeoIP (一个 PEAR 包)实现了地理定位。它不是非常准确,但它给出的国家/地区可以,地区/州可以,最近的主要城市几乎总是正确的。
安装软件包后,您必须从 maxmind 下载最新的数据文件,它可以就这么简单使用:
I recently implemented geolocation with GeoIP (a PEAR package). It is not terribly accurate, but it gives country ok, region/state ok and major nearest city almost always right.
Once you install the package, you have to download the latest data file from maxmind, and it can be as easy to use as this: