通过GeoIP获取ip所属地 (国家,城市,时区,邮编,经纬度等)

来源: http://www.phpandstuff.com/articles/geoip-country-lookup-with-php

 

GeoIP + PHP

<?php

    //计时开始
    function utime() {
        $time = explode( " ", microtime() );
        $usec = (double)$time[0];
        $sec = (double)$time[1];
        return $usec + $sec;
    }
    $startTimes = utime();
 
    // include the php script
    // wget -c http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
    // gunzip GeoIP.dat.gz
    include("geoip.inc");
 
    // open the geoip database
    $gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
 
    // 获取国家代码
    $country_code = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']);
    echo "Your country code is: <strong>$country_code</strong> <br />";
 
    // 获取国家名称
    $country_name = geoip_country_name_by_addr($gi, $_SERVER['REMOTE_ADDR']);
    echo "Your country name is: <strong>$country_name</strong> <br />";
 
    // close the database
    geoip_close($gi);
 
    //运行结束时间
    $endTimes = utime();
    $runTimes = sprintf( '%0.4f', ( $endTimes - $startTimes ) );
    echo "Processed in " . $runTimes . "second.";
?>

 

注:在本地测试的话因 为$_SERVER['REMOTE_ADDR']和$_SERVER['REMOTE_ADDR']可能是127.0.0.1,所 以输出的内容为空。可以自己带入IP测试

 

或者 使用某网站的API

 

API 1.

 

1. 返回文字

 

http://api.hostip.info/get_html.php?ip=12.215.42.19&position=true
 

2. 返回图片

 

<IMG SRC="http://api.hostip.info/flag.php?ip=12.215.42.19" ALT="IP Address Lookup">
 

 

API 2. (需要申请api key ,免费的,类似google)

 

城市:

 

http://api.ipinfodb.com/v3/ip-city/?key=<your_api_key>&ip=74.125.45.100

 

国家(更快) :

 

http://api.ipinfodb.com/v3/ip-country/?key=<your_api_key>&ip=74.125.45.100
 

 

ParameterRequiredDefaultValue
key Yes<empty>API key provided with your free account.
ip NoClient IPIP address
format Norawraw, xml, json
callback No<empty>Required when using json callback.
Please use the appropriate API for your needs. You can help us keep the load low on our servers by making sure that :
  • If you only need the country name, avoid using the city precision API.
  • If you track your visitors, avoid querying our API for all your page views (you can store the geolocation in a cookie, see below for an example)

APIPrecisionTimezoneDomains lookups
ip-city CityYesYes
ip-country CountryNoYes
Please use the appropriate API for your needs. You can help us keep the load low on our servers by making sure that :
  • If you only need the country name, avoid using the city precision API.
  • If you track your visitors, avoid querying our API for all your page views (you can store the geolocation in a cookie, see below for an example)

 

使用类:

 

<?php
final class ip2location_lite{
	protected $errors = array();
	protected $service = 'api.ipinfodb.com';
	protected $version = 'v3';
	protected $apiKey = '';

	public function __construct(){}

	public function __destruct(){}

	public function setKey($key){
		if(!empty($key)) $this->apiKey = $key;
	}

	public function getError(){
		return implode("\n", $this->errors);
	}

	public function getCountry($host){
		return $this->getResult($host, 'ip-country');
	}

	public function getCity($host){
		return $this->getResult($host, 'ip-city');
	}

	private function getResult($host, $name){
		$ip = @gethostbyname($host);

		if(preg_match('/^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:[.](?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$/', $ip)){
			$xml = @file_get_contents('http://' . $this->service . '/' . $this->version . '/' . $name . '/?key=' . $this->apiKey . '&ip=' . $ip . '&format=xml');

			try{
				$response = @new SimpleXMLElement($xml);

				foreach($response as $field=>$value){
					$result[(string)$field] = (string)$value;
				}

				return $result;
			}
			catch(Exception $e){
				$this->errors[] = $e->getMessage();
				return;
			}
		}

		$this->errors[] = '"' . $host . '" is not a valid IP address or hostname.';
		return;
	}
}
?>
 
<?
include('ip2locationlite.class.php');

//Load the class
$ipLite = new ip2location_lite;
$ipLite->setKey('<your_api_key>');
 
//Get errors and locations
$locations = $ipLite->getCity($_SERVER['REMOTE_ADDR']);
$errors = $ipLite->getError();
 
//Getting the result
echo "<p>\n";
echo "<strong>First result</strong><br />\n";
if (!empty($locations) && is_array($locations)) {
  foreach ($locations as $field => $val) {
    echo $field . ' : ' . $val . "<br />\n";
  }
}
echo "</p>\n";
 
//Show errors
echo "<p>\n";
echo "<strong>Dump of all errors</strong><br />\n";
if (!empty($errors) && is_array($errors)) {
  foreach ($errors as $error) {
    echo var_dump($error) . "<br /><br />\n";
  }
} else {
  echo "No errors" . "<br />\n";
}
echo "</p>\n";
 

 

数据库版:

 

 

IP geolocation databases download

Updated Mar 5 2011

DatabaseUncompressed Size(MB)IP PrecisionData ProvidedFormat
DB11.60123.123.123ISO country code, country name CSV BIN
DB317.11123.123.123ISO country code, country name, state, city CSV BIN
DB521.40123.123.123ISO country code, country name, state, city, latitude, longitude CSV BIN
DB922.76123.123.123ISO country code, country name, state, city, latitude, longitude, ZIP codes CSV BIN
DB1123.28123.123.123ISO country code, country name, state, city, latitude, longitude, ZIP codes, time zone CSV BIN

 

 

key: c9dcc88453e33a9e63ebad8d65f91583e87abd8185dd95f09fbeef6c62264f7d

 

其他参考

http://pecl.php.net/package/geoip

http://www.geoiptool.com/

http://www.hostip.info/use.html

http://phpweby.com/software/ip2country

http://www.ipinfodb.com/index.php

 

 

转帖注明出处:http://justcoding.iteye.com/blog/986355

 

本站链接:

php 显示ip所属地 (qq版)

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值