PHP 中是否有可以检测访问者所在国家/地区的 Web 服务?

发布于 2024-09-16 05:20:22 字数 1539 浏览 5 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

仙女山的月亮 2024-09-23 05:20:22

我使用了以下 SOAP GeoIPService 效果良好来自 webservicex.net。

当然,您还需要在 PHP 配置中启用 SOAP 支持。

然后你可以尝试这样的事情:

$client = new SoapClient("http://www.webservicex.net/geoipservice.asmx?WSDL");
$params = new stdClass;
$params->IPAddress = 'xxx.xxx.xxx.xxx';
$result = $client->GetGeoIP($params);
// Check for errors...
$country = $result->GetGeoIPResult->CountryName;

I have used the following SOAP GeoIPService to good effect from webservicex.net.

You will also of course need to enable SOAP support in your PHP config.

You could then try something like:

$client = new SoapClient("http://www.webservicex.net/geoipservice.asmx?WSDL");
$params = new stdClass;
$params->IPAddress = 'xxx.xxx.xxx.xxx';
$result = $client->GetGeoIP($params);
// Check for errors...
$country = $result->GetGeoIPResult->CountryName;
抚笙 2024-09-23 05:20:22

您可以查看 MaxMind 开源解决方案。

You could look around at MaxMind's open source solutions.

爱的故事 2024-09-23 05:20:22

您可以下载并使用此数据库http://software77.net/geo-ip/

You could download and use this database http://software77.net/geo-ip/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文