web-dev-qa-db-ja.com

IPから地域/都市を取得

iPから地域と都市を取得するにはどうすればよいですか?私はこのサービスを見つけました: http://api.hostip.info/?ip=xyz.qwe.rty

しかし、次のような正確な情報は提供されません: http://www.ipaddresslocation.org/

無料のサービスをご存知ですか?この情報をphpスクリプトで取得する必要がありますが、外部ライブラリをインストールしません。

どうもありがとうございます

22
michele

これが私のお気に入りです。

ipinfodb

20
joakimdahlstrom

http://ipinfo.io 、私のサービスは、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
}

PHPの例:

$ip = $_SERVER['REMOTE_ADDR'];
$details = json_decode(file_get_contents("http://ipinfo.io/{$ip}"));
echo $details->city; // -> "Mountain View"
34
Ben Dowling

無料のジオロケーションAPI http://ip-api.com/docs/

IPアドレス、国、地域、都市、ISP、組織に関する情報を取得できます。

応答の形式と例:XML、JSON、CSV、PHP。

使用制限:システムは、毎分240を超えるリクエストを行うIPアドレスを自動的に禁止します。

PHPの例

$ip = $_SERVER['REMOTE_ADDR']; 
$query = @unserialize(file_get_contents('http://ip-api.com/php/'.$ip));
if($query && $query['status'] == 'success') {
echo 'My IP: '.$query['query'].', '.$query['isp'].', '.$query['org'].', '.$query ['country'].', '.$query['regionName'].', '.$query['city'].'!';
} else {
echo 'Unable to get location';
}
19
changeip

http://www.ipaddresslocation.org/ からIPの都市を取得する場合は、このチュートリアルに従ってください: https://www.facebook.com/Websitedevelopar/posts/468049883274297 しかし、次の文字列で正規表現を変更します。

/<i>([a-z\s]+)\:[<\/i>\s]+<b>(.*)<\/b>/im

さようなら

1
Antonio

これを試すことができます。

$ tags = get_meta_tags( 'http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress=94.55.180.139'); print $ tags ['city']; // 市の名前

1
siniradam