<?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('無法開啟遠端檔案');
}
?>
- Tsung's Blog | PHP Zlib Compression 範例
No comments:
Post a Comment
Comment Form Message