如何根据某个IP获取Country? [重复]

问题描述 投票:0回答:15

有谁知道从给定 IP 地址检索国家/地区的任何简单方法,最好采用 ISO_3166-1 格式?

ip lookup country
15个回答
42
投票

有两种方法:使用互联网服务和使用某种本地列表(可能包含在库中)。您想要什么取决于您正在构建什么。

服务:

对于列表:


38
投票

很多人(包括我的公司)似乎都在使用 MaxMind GeoIP。

他们有一个免费版本GeoLite,它不如付费版本准确,但如果您只是追求简单的东西,它可能就足够了。


11
投票

这里有一个很好的免费服务,带有公共 API: http://www.hostip.info/use.html


9
投票

ipinfodb 提供免费的数据库和 API,用于 IP 到国家/地区,反之亦然。他们使用 MaxMind 的免费数据。数据每月都会更新,这是一个很好的免费替代方案,具有不错的准确性。


6
投票

我不知道 http://hostip.info 网站的准确性如何。我刚刚访问了该网站,它报告说我的国家是加拿大。 我在美国,我的办公室使用的 ISP 仅在美国运营。 它确实允许您纠正其猜测,但如果您使用此服务按国家/地区跟踪网站访问者,您将无法知道数据是否正确。 当然,我只是一个数据点。我下载了 GeoLite Country 数据库,它只是一个 .csv 文件,我的 IP 地址被正确识别为 US。

MaxMind 产品线(付费或免费)的另一个好处是,您拥有数据,不会因向另一个系统进行 Web 服务调用而导致性能受到影响。


3
投票

google 的 clientlocation 返回(我的示例

latlng = new google.maps.LatLng(google.loader.ClientLocation.latitude, google.loader.ClientLocation.longitude);
location = "IP location: " + getFormattedLocation();
document.getElementById("location").innerHTML = location;

3
投票

您可以使用针对此问题提供的解决方案。

但它返回 2 位国家/地区代码。


3
投票

您可以使用我的服务,http://ipinfo.io,为此。 API 返回有关 IP 地址的一大堆不同详细信息:

$ curl ipinfo.io/8.8.8.8
{
  "ip": "8.8.8.8",
  "hostname": "google-public-dns-a.google.com",
  "loc": "37.385999999999996,-122.0838",
  "org": "AS15169 Google Inc.",
  "city": "Mountain View",
  "region": "CA",
  "country": "US",
  "phone": 650
}

如果您只需要输入国家/地区代码,则只需在 URL 中添加 /country 即可:

$ curl ipinfo.io/8.8.8.8/country
US

这是您可以使用的通用 PHP 函数:

function ip_details($ip) {
    $json = file_get_contents("http://ipinfo.io/{$ip}");
    $details = json_decode($json);
    return $details;
}

$details = ip_details("8.8.8.8");

echo $details->city;     // => Mountain View
echo $details->country;  // => US
echo $details->org;      // => AS15169 Google Inc.
echo $details->hostname; // => google-public-dns-a.google.com

我在这些示例中使用了 IP 8.8.8.8,但如果您想要用户 IP 的详细信息,只需传入

$_SERVER['REMOTE_ADDR']
即可。更多详细信息请访问 http://ipinfo.io/developers


3
投票

最准确的是Digital Elements NetAcuity。它不是免费的,但大多数情况下你都会得到你付出的代价。


3
投票

尝试这个PHP代码:

  <?php  $ip = $_SERVER['REMOTE_ADDR'];
    $json = file_get_contents("http://api.easyjquery.com/ips/?ip=".$ip."&full=true");
    $json = json_decode($json,true);
    $timezone = $json[localTimeZone];?>

2
投票

使用 http://www.mmtutorialvault.com/php-ip-to-country-function/

中的函数 ipToCountry($ip)

2
投票

您可以使用 Web 服务 API 来完成此工作,例如:

see example of service: http://ip-api.com and usage: http://whatmyip.info

1
投票

您可以尝试免费的 IP2Location LITE 数据库

在 MySQL 中创建表

CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_db1`(
    `ip_from` INT(10) UNSIGNED,
    `ip_to` INT(10) UNSIGNED,
    `country_code` CHAR(2),
    `country_name` VARCHAR(64),
    INDEX `idx_ip_to` (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

导入数据

LOAD DATA LOCAL
    INFILE 'IP2LOCATION-LITE-DB1.CSV'
INTO TABLE
    `ip2location_db1`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;

查询 MySQL 的 PHP 代码

<?php
// Replace this MYSQL server variables with actual configuration
$mysql_server = "mysql_server.com";
$mysql_user_name = "UserName";
$mysql_user_pass = "Password";

// Retrieve visitor IP address from server variable REMOTE_ADDR
$ipaddress = $_SERVER["REMOTE_ADDR"];

// Convert IP address to IP number for querying database
$ipno = Dot2LongIP($ipaddress);

// Connect to the database server
$link = mysql_connect($mysql_server, $mysql_user_name, $mysql_user_pass) or die("Could not connect to MySQL database");

// Connect to the IP2Location database
mysql_select_db("ip2location") or die("Could not select database");

// SQL query string to match the recordset that the IP number fall between the valid range
$query = "SELECT * FROM ip2location_db1 WHERE $ipno <= ip_to LIMIT 1";

// Execute SQL query
$result = mysql_query($query) or die("IP2Location Query Failed");

// Retrieve the recordset (only one)
$row = mysql_fetch_object($result);

// Keep the country information into two different variables
$country_code = $row->country_code;
$country_name = $row->country_name;

echo "Country_code: " . $country_code . "<br/>";
echo "Country_name: " . $country_name . "<br />";

// Free recordset and close database connection
mysql_free_result($result);
mysql_close($link);

// Function to convert IP address (xxx.xxx.xxx.xxx) to IP number (0 to 256^4-1)
function Dot2LongIP ($IPaddr) {
 if ($IPaddr == "")
 {
   return 0;
 } else {
   $ips = explode(".", $IPaddr);
   return ($ips[3] + $ips[2] * 256 + $ips[1] * 256 * 256 + $ips[0] * 256 * 256 * 256);
 }
}
?>

1
投票

请参阅 ipdata.co,它为您提供来自 IP 地址的多个数据点。

API 非常快,有 10 个全球端点,每个端点每天能够处理超过 8 亿个调用。

这是一个卷曲示例:

curl https://api.ipdata.co/78.8.53.5
{
    "ip": "78.8.53.5",
    "city": "G\u0142og\u00f3w",
    "region": "Lower Silesia",
    "region_code": "DS",
    "country_name": "Poland",
    "country_code": "PL",
    "continent_name": "Europe",
    "continent_code": "EU",
    "latitude": 51.6461,
    "longitude": 16.1678,
    "asn": "AS12741",
    "organisation": "Netia SA",
    "postal": "67-200",
    "currency": "PLN",
    "currency_symbol": "z\u0142",
    "calling_code": "48",
    "flag": "https://ipdata.co/flags/pl.png",
    "emoji_flag": "\ud83c\uddf5\ud83c\uddf1",
    "time_zone": "Europe/Warsaw",
    "is_eu": true,
    "suspicious_factors": {
        "is_tor": false
    }
}⏎  

-1
投票

您可以尝试一下https://astroip.co,这是我构建的一个新的地理定位 API,它公开地理数据以及其他有用的数据点,如货币、时区、ASN 数据和安全性。

这是 json 响应的示例:

curl https://api.astroip.co/70.163.7.1
{
  "status_code": 200,
  "geo": {
    "is_metric": false,
    "is_eu": false,
    "longitude": -77.0924,
    "latitude": 38.7591,
    "country_geo_id": 6252001,
    "zip_code": "22306",
    "city": "Alexandria",
    "region_code": "VA",
    "region_name": "Virginia",
    "continent_code": "NA",
    "continent_name": "North America",
    "capital": "Washington",
    "country_name": "United States",
    "country_code": "US"
  },
  "asn": {
    "route": "70.160.0.0/14",
    "type": "isp",
    "domain": "cox.net",
    "organization": "ASN-CXA-ALL-CCI-22773-RDC",
    "asn": "AS22773"
  },
  "currency": {
    "native_name": "US Dollar",
    "code": "USD",
    "name": "US Dollar",
    "symbol": "$"
  },
  "timezone": {
    "is_dst": false,
    "gmt_offset": -18000,
    "date_time": "2020-12-05T17:04:48-05:00",
    "microsoft_name": "Eastern Standard Time",
    "iana_name": "America/New_York"
  },
  "security": {
    "is_crawler": false,
    "is_proxy": false,
    "is_tor": false,
    "tor_insights": null,
    "proxy_insights": null,
    "crawler_insights": null
  },
  "error": null,
  "ip_type": "ipv4",
  "ip": "70.163.7.1"
}
© www.soinside.com 2019 - 2024. All rights reserved.