码迷,mamicode.com
首页 > 其他好文 > 详细

万能gz解压函数

时间:2018-05-10 17:15:32      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:txt   pat   $path   unzip   fopen   cti   ace   func   eof   

//解压tar.gz, gz
public function unzip_gz($gz_file){

if(!strpos($gz_file,‘.gz‘)){
return false;
}

$buffer_size = 4096; // read 4kb at a time
if(strpos($gz_file,‘.tar.gz‘)===false) {
$out_file_name = str_replace(‘.gz‘, ‘.txt‘, $gz_file);
}else{
$out_file_name = str_replace(‘.tar.gz‘, ‘‘, $gz_file);
}
$file = gzopen($gz_file, ‘rb‘);
$out_file = fopen($out_file_name, ‘wb‘);
$str=‘‘;
while(!gzeof($file)) {
fwrite($out_file, gzread($file, $buffer_size));
}
fclose($out_file);
gzclose($file);
unlink($gz_file);
return true;
}

$path = "要解压的文件路径";

unzip_gz($path);

万能gz解压函数

标签:txt   pat   $path   unzip   fopen   cti   ace   func   eof   

原文地址:https://www.cnblogs.com/lsbaiwyl/p/9020024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!