1.使用PHP GeoIP扩展,功能不全,如不能查询AS号:
yum install php-pecl-geoip
#下载最新geo数据库
cd /usr/share/GeoIP/
wget http://www.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
gzip -d GeoIP.dat.gz
<?php
echo geoip_country_code_by_name('www.haiyun.me') . "\n";
?>
2.使用GeoIP官方提供的PHP API,不可和上扩展共存,函数冲突。
git clone https://github.com/maxmind/geoip-api-php.git
<?php
include("./src/geoip.inc");
$gi = geoip_open("/usr/share/GeoIP/GeoIP.dat", GEOIP_STANDARD);
echo geoip_country_code_by_name($gi, "www.haiyun.me") . "\n";
?>
GeoIP数据库下载:http://dev.maxmind.com/geoip/legacy/geolite/
标签:none