博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP开发日志 ━━ zip压缩
阅读量:4116 次
发布时间:2019-05-25

本文共 5692 字,大约阅读时间需要 18 分钟。

使用php自带的压缩组件,非常方便,网上找到一个压缩全目录的类,有一些小错误,这里直接拉过来用了,加了一个自定义方法,修正了bug。

/** * 压缩文件类库 (zip.php : sl_zip) *  * 		压缩文件有关的功能 * * @category    System * @package     System * @subpackage  Library * @author      原作者wengxianhu * @date        2013-08-05 * @since       Version 1.0 * @todo        压缩指定目录 */class sl_zip{
protected $zip; protected $root; protected $ignored_names; public function __construct() {
$this->zip = new ZipArchive; } /** * 解压zip文件到指定文件夹 * * @access public * @param string $zipfile 压缩文件路径 * @param string $path 压缩包解压到的目标路径 * @return booleam 解压成功返回 TRUE 否则返回 FALSE */ public function unzip($zipfile='', $path='') {
if ($this->zip->open($zipfile)===TRUE) {
$file_tmp = @fopen($zipfile, "rb"); $bin = fread($file_tmp, 15); //只读15字节 各个不同文件类型,头信息不一样。 fclose($file_tmp); /* 只针对zip的压缩包进行处理 */ if (TRUE === $this->getTypeList($bin)) {
$result = $this->zip->extractTo($path); $this->zip->close(); return $result; }else{
return FALSE; } } return FALSE; } /** * 压缩将多个指定的文件 * * 如果不是全目录压缩,可用此方法将数据库中记录的路径整理后压缩 * @access public * @param string $zipfile 将要生成的压缩文件路径 * @param array $path 将要被压缩的文件夹路径及生成后在压缩包内的路径,键名为待压缩文件,键值为压缩后名,如果键值为空,则等同于一维数组的写法例如array('xx/xx.xls'=>'')等同于array('xx/xx.xls') * @return booleam 压缩成功返回 TRUE或者文件下载, 否则返回 FALSE */ public function zip($zipfile='', $path=array()) {
if ($this->zip->open($zipfile, ZIPARCHIVE::CREATE) !== TRUE) {
throw new Exception("cannot open <$zipfile>\n"); } if(!empty($path)) {
foreach($path as $key=>$value) {
if(is_integer($key) and !empty($value)) {
$this->zip->addFile($value); }else{
$this->zip->addFile($key,$value); } } } return $this->zip->close(); } /** * 目录压缩 * * @access public * @param string $zipfile 将要生成的压缩文件路径 * @param strng $folder 将要被压缩的文件夹路径 * @param array $ignored 要忽略的文件列表 * @return booleam 压缩包生成成功返回TRUE 否则返回FALSE */ public function zipFolder($zipfile='', $folder='', $ignored=NULL) {
//使用方法 //$this->load->sys_library('zip','#l_zip')->zipFolder('..\..\..\..\..\uploadfile\test.zip','D:\Projects\SNANS\WEB\SNANS_IIAS\uploadfile\creditinfo',array('index.html','temp')); $this->ignored_names = is_array($ignored) ? $ignored : ($ignored ? array($ignored) : array()); if ($this->zip->open($zipfile, ZIPARCHIVE::CREATE) !== TRUE) {
throw new Exception("cannot open <$zipfile>\n"); } $folder = substr($folder, -1) == '/' ? substr($folder, 0, strlen($folder)-1) : $folder; if(strstr($folder, '/')) {
$this->root = substr($folder, 0, strrpos($folder, '/')+1); $folder = substr($folder, strrpos($folder, '/')+1); } $this->createZipFolder($folder); return $this->zip->close(); } /** * 递归添加文件到压缩包 * * @access private * @param string $folder 添加到压缩包的文件夹路径 * @param string $parent 添加到压缩包的文件夹上级路径 * @return void */ private function createZipFolder($folder='', $parent=NULL) {
$full_path = $this->root.$parent.$folder; $zip_path = $parent.$folder; $this->zip->addEmptyDir($zip_path); $dir = new DirectoryIterator($full_path); foreach($dir as $file) {
if(!$file->isDot()) {
$filename = $file->getFilename(); if(!in_array($filename, $this->ignored_names)) {
if($file->isDir()) {
$this->createZipFolder($filename, $zip_path.'/'); }else{
$this->zip->addFile($full_path.'/'.$filename, $zip_path.'/'.$filename); } } } } } /** * 读取压缩包文件与目录列表 * * @access public * @param string $zipfile 压缩包文件 * @return array 文件与目录列表 */ public function fileList($zipfile='') {
$file_dir_list = array(); $file_list = array(); if ($this->zip->open($zipfile) == TRUE) {
for ($i = 0; $i < $this->zip->numFiles; $i++) {
$numfiles = $this->zip->getNameIndex($i); if(preg_match('/\/$/i', $numfiles)) {
$file_dir_list[] = $numfiles; }else{
$file_list[] = $numfiles; } } } return array('files'=>$file_list, 'dirs'=>$file_dir_list); } /** * 得到文件头与文件类型映射表 * * @author wengxianhu * @date 2013-08-10 * @param $bin string 文件的二进制前一段字符 * @return boolean */ private function getTypeList($bin='') {
$array = array( array("504B0304", "zip") ); foreach ($array as $v) {
$blen = strlen(pack("H*", $v[0])); //得到文件头标记字节数 $tbin = substr($bin, 0, intval($blen)); ///需要比较文件头长度 if(strtolower($v[0]) == strtolower(array_shift(unpack("H*", $tbin)))) {
return TRUE; } } return FALSE; }}

转载地址:http://fvkpi.baihongyu.com/

你可能感兴趣的文章
去哪儿一面+平安科技二面+hr面+贝贝一面+二面产品面经
查看>>
element ui 弹窗在IE11中关闭时闪现问题修复
查看>>
vue 遍历对象并动态绑定在下拉列表中
查看>>
Vue动态生成el-checkbox点击无法选中的解决方法
查看>>
python __future__
查看>>
MySQL Tricks1
查看>>
python 变量作用域问题(经典坑)
查看>>
pytorch
查看>>
pytorch(二)
查看>>
pytorch(三)
查看>>
pytorch(四)
查看>>
pytorch(5)
查看>>
pytorch(6)
查看>>
ubuntu相关
查看>>
C++ 调用json
查看>>
nano中设置脚本开机自启动
查看>>
动态库调动态库
查看>>
Kubernetes集群搭建之CNI-Flanneld部署篇
查看>>
k8s web终端连接工具
查看>>
手绘VS码绘(一):静态图绘制(码绘使用P5.js)
查看>>