万能gz解压函数

Posted lsbaiwyl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了万能gz解压函数相关的知识,希望对你有一定的参考价值。

//解压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解压函数的主要内容,如果未能解决你的问题,请参考以下文章

自己封装Linux命令行万能解压命令

linux解压xz文件

STM32入门开发: 制作红外线遥控器(智能居家-万能遥控器)

(cLionRubyMinePyCharmWebStormPhpStormAppcodeClionIdea) 万能破解,获取自己的注册码

Python装饰器的实现和万能装饰器

Python之路第三篇:Python基础(18)——函数万能参数