如何在我的 Web 应用程序中实施基于位置的服务?除了 $_SERVER['REMOTE_ADDR'] .. 在 PHP 中

发布于 2024-10-28 09:09:35 字数 121 浏览 1 评论 0原文

我想知道如何在我的网站中实现基于位置的服务,在那里我可以找到访问我的网站的用户的确切位置..我尝试使用 $_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你再特殊 2024-11-04 09:09:35

我最近使用 GeoIP (一个 PEAR 包)实现了地理定位。它不是非常准确,但它给出的国家/地区可以,地区/州可以,最近的主要城市几乎总是正确的。

安装软件包后,您必须从 maxmind 下载最新的数据文件,它可以就这么简单使用:

require_once "Net/GeoIP.php";
$geoloc = Net_GeoIP::getInstance('/var/www/GeoIP.dat');
try{
    $countryCode = $geoloc->lookupCountryCode($_SERVER['REMOTE_ADDR']);
}
catch(Exception $e) {}

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:

require_once "Net/GeoIP.php";
$geoloc = Net_GeoIP::getInstance('/var/www/GeoIP.dat');
try{
    $countryCode = $geoloc->lookupCountryCode($_SERVER['REMOTE_ADDR']);
}
catch(Exception $e) {}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文