23

我们正在寻找一种快速准确的方法来根据他们的 IP 获取访问者的位置。

我们已经尝试过 ipinfodb.com,但他们的 API 使我们的网站在进行 API 调用时严重滞后。

您还建议什么其他服务?

4

4 回答 4

38

获取地理 IP 信息

请求地理 IP 服务器 (netip.de) 进行检查,返回 IP 所在的位置(主机、州、国家、城镇)。

<?php
       $ip='94.219.40.96';
       print_r(geoCheckIP($ip));
       //Array ( [domain] => dslb-094-219-040-096.pools.arcor-ip.net [country] => DE - Germany [state] => Hessen [town] => Erzhausen )

       //Get an array with geoip-infodata
       function geoCheckIP($ip)
       {
               //check, if the provided ip is valid
               if(!filter_var($ip, FILTER_VALIDATE_IP))
               {
                       throw new InvalidArgumentException("IP is not valid");
               }

               //contact ip-server
               $response=@file_get_contents('http://www.netip.de/search?query='.$ip);
               if (empty($response))
               {
                       throw new InvalidArgumentException("Error contacting Geo-IP-Server");
               }

               //Array containing all regex-patterns necessary to extract ip-geoinfo from page
               $patterns=array();
               $patterns["domain"] = '#Domain: (.*?)&nbsp;#i';
               $patterns["country"] = '#Country: (.*?)&nbsp;#i';
               $patterns["state"] = '#State/Region: (.*?)<br#i';
               $patterns["town"] = '#City: (.*?)<br#i';

               //Array where results will be stored
               $ipInfo=array();

               //check response from ipserver for above patterns
               foreach ($patterns as $key => $pattern)
               {
                       //store the result in array
                       $ipInfo[$key] = preg_match($pattern,$response,$value) && !empty($value[1]) ? $value[1] : 'not found';
               }

               return $ipInfo;
       }

?>
于 2011-10-14T11:38:33.843 回答
4

最好和最新的是 GeoplugginAPI,它是免费且没有限制的

http://geoplugin.com

于 2013-04-05T08:35:45.593 回答
3

试试这个http://ip.codehelper.io/

这是PHP代码。该代码将自动缓存您的请求,因此您的服务器不会发送多个请求。返回 IP 地址、国家、城市和更多信息。

<?php
// Required Libraries
require_once("ip.codehelper.io.php");
require_once("php_fast_cache.php");

// New Class
$_ip = new ip_codehelper();

// Detect Real IP Address & Location
$real_client_ip_address = $_ip->getRealIP();
$visitor_location       = $_ip->getLocation($real_client_ip_address);

// Output result
echo $visitor_location['Country']."";
echo "<pre>";
print_r($visitor_location);
于 2013-07-22T23:51:37.163 回答
2

该领域的市场领导者和提供企业解决方案的公司是Digital Element。他们提供了广泛的 API,包括 PHP,以访问他们的服务器,您可以在本地安装或通过 Web 服务访问。他们的数据质量很高,他们的解决方案的性能非常好。MaxMind 也是另一个获得好评的选择。

为了获得最佳准确性,您需要选择每周更新的服务或解决方案,因为这些东西在给定的网络中可能会发生很大变化。成本将取决于更新频率、地理数据的粒度以及您想要的附加字段或数据库的数量。一些提供商提供语言、人口统计、公司和域名等等。

于 2011-10-14T12:10:39.363 回答