php对gzip文件或者字符串解压实例参考
前端之家收集整理的这篇文章主要介绍了
php对gzip文件或者字符串解压实例参考,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
其实PHP对gzip解压很简单,用内置的gzdecode函数就可以了,不过很可惜我配置了半天也无法支持gzdecode函数,所以只好变通一下:
<div class="codetitle"><a style="CURSOR: pointer" data="72155" class="copybut" id="copybut72155" onclick="doCopy('code72155')"> 代码如下:
<div class="codebody" id="code72155">
if(!function_exists('gzdecode')){
functiongzdecode($data){
$flags=ord(substr($data,3,1));
$headerlen=10;
$extralen=0;
$filenamelen=0;
if($flags&4){
$extralen=unpack('v',substr($data,10,2));
$extralen=$extralen[1];
$headerlen+=2+$extralen;
}
if($flags&8)//Filename
$headerlen=strpos($data,chr(0),$headerlen)+1;
if($flags&16)//Comment
$headerlen=strpos($data,$headerlen)+1;
if($flags&2)//CRCatendoffile
$headerlen+=2;
$unpacked=@gzinflate(substr($data,$headerlen));
if($unpacked===FALSE)
$unpacked=$data;
return$unpacked;
}
}