歡迎來到小豬圈!

2008-09-24

查詢 IP 來自哪個地區/城市 (三) 半自動更新資料庫

  • MaxMind GeoIP 提供兩個每月更新的免費資料庫: GeoLite Country (GeoIP.dat.gz) / GeoLite City (GeoLiteCity.dat.gz) ,檔案是用 gzip 壓縮,有固定鍵結可以直接下載,所以可以利用 PHP Compression Streams 下載同時解壓,然後存檔。
  • 要用 compress.zlib:// 這個 wrapper,必須打開 allow_url_fopen 這項設定。
<?php
$source_filename = 'http://www.maxmind.com/download/geoip/database/GeoIP.dat.gz';

// 取得解開 .gz 後要用的檔名 GeoIP.dat
$base_filename = basename($source_filename, ".gz");

$destination_filename = './' . $base_filename;

$file_handle = fopen('compress.zlib://' . $source_filename, 'rb');
$data = '';
if($file_handle){
  while (!feof($file_handle)) {
    $data .= fgets($file_handle, 1024);
    set_time_limit(5); // 增加執行時間的上限,避免逾時
  }
  file_put_contents($destination_filename, $data); // 預設會覆蓋同名檔案
  fclose($file_handle);
}else{
  exit('無法開啟遠端檔案');
}
?> 
  1. Tsung's Blog | PHP Zlib Compression 範例

No comments:

Post a Comment

Comment Form Message

標籤分類

Blog Archive

Labels

Google Analytics Tracking Code

About Me

My photo
Keelung, R.O.C, Taiwan
一個不學無術、混吃等死的傢伙…