Geo IP install

2015年9月30日

Cent OS 6 / PHP 5.5.11
pear install Net_GeoIP

$ wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
gunzip GeoIP.dat.gz

require_once "Net/GeoIP.php";

$geoip = Net_GeoIP::getInstance("./GeoIP.dat");

try {
echo $geoip->lookupCountryCode(“1.161.19.32″);
// 結果 TW
} catch (Exception $e) {
// 例外処理
}

Comments are closed.