博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 压缩zip
阅读量:6315 次
发布时间:2019-06-22

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

hot3.png

基本网上找的都是将子文件夹的文件递归出来放入根目录,但我需要保留文件夹本身的结构,终于找到一个自己需要的,修改了一些代码,让该方法可以排除或包含需要的文件

 

public function test(){    $zip = new \ZipArchive();    $path_zip = $_SERVER['DOCUMENT_ROOT'] . '/Application/Test/testzip/';    $path_files = $_SERVER['DOCUMENT_ROOT'] . '/Application/Test/testPackage/';    if( $zip->open( $path_zip . 'test.zip', \ZipArchive::OVERWRITE ) === true ){        $this->createZip(opendir($path_files),$zip,$path_files, array( array( '1.txt' ), true ) );        $zip->close();    }}/*压缩多级目录    $openFile:目录句柄    $zipObj:Zip对象    $sourceAbso:源文件夹路径    $excludeOrInclude:包含或排除,第一个参数为数组,第二个参数代表方式,不填是包含,为true是排除*/private function createZip($openFile,$zipObj,$sourceAbso, $excludeOrInclude=array() , $newRelat = ''){    while(($file = readdir($openFile)) != false)    {        if($file=="." || $file=="..")            continue;        if( $excludeOrInclude ){            if( isset( $excludeOrInclude[0] ) && is_array( $excludeOrInclude[0] ) && $excludeOrInclude[0] ){                //第二的参数为true代表排除,否则代表包含,默认为包含                if( isset( $excludeOrInclude[1] ) && $excludeOrInclude[1] == true ){                    if( in_array( $file, $excludeOrInclude[0] ) ){                        continue;                    }                }else{                    if( ! in_array( $file, $excludeOrInclude[0] ) ){                        continue;                    }                }            }        }        /*源目录路径(绝对路径)*/        $sourceTemp = $sourceAbso.'/'.$file;        /*目标目录路径(相对路径)*/        $newTemp = $newRelat==''?$file:$newRelat.'/'.$file;        if(is_dir($sourceTemp))        {            //echo '创建'.$newTemp.'文件夹
'; $zipObj->addEmptyDir($newTemp);/*这里注意:php只需传递一个文件夹名称路径即可*/ $this->createZip(opendir($sourceTemp),$zipObj,$sourceTemp,$newTemp); } if(is_file($sourceTemp)) { //echo '创建'.$newTemp.'文件
'; $zipObj->addFile($sourceTemp,$newTemp); } }}

转载于:https://my.oschina.net/waterPlants/blog/805251

你可能感兴趣的文章
Linux时间子系统之一:clock source(时钟源)【转】
查看>>
[Java开发之路](7)RandomAccessFile类具体解释
查看>>
sparklyr-R语言访问Spark的另外一种方法
查看>>
对Socket CAN的理解(4)——【Socket CAN接收数据流程】
查看>>
博客搬家终于搞完了
查看>>
android 通过子线程跳转activity并传递内容
查看>>
ux.form.field.GridDate 支持快速选择日期的日期控件
查看>>
bootstrap入门基础
查看>>
合抱之木,生于毫末
查看>>
P1888 三角函数
查看>>
poj 3105 Expectation 按位统计
查看>>
微服务的一种开源实现方式——dubbo+zookeeper
查看>>
Java类载入器(二)——自己定义类载入器
查看>>
c++引用返回值
查看>>
IWDG—独立看门狗
查看>>
【其他】比较优雅地编码
查看>>
ES6中的Symbol类型
查看>>
【博客目录】SqlServer篇
查看>>
springboot启动mybatis
查看>>
SQL Server索引视图以(物化视图)及索引视图与查询重写
查看>>