php简单创建zip压缩文件的方法


Posted in PHP onApril 30, 2016

本文实例讲述了php简单创建zip压缩文件的方法。分享给大家供大家参考,具体如下:

/* creates a compressed zip file */
function create_zip($files = array(),$destination = '',$overwrite = false) {
  //if the zip file already exists and overwrite is false, return false
  if(file_exists($destination) && !$overwrite) { return false; }
  //vars
  $valid_files = array();
  //if files were passed in...
  if(is_array($files)) {
    //cycle through each file
    foreach($files as $file) {
      //make sure the file exists
      if(file_exists($file)) {
        $valid_files[] = $file;
      }
    }
  }
  //if we have good files...
  if(count($valid_files)) {
    //create the archive
    $zip = new ZipArchive();
    if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
      return false;
    }
    //add the files
    foreach($valid_files as $file) {
      $zip->addFile($file,$file);
    }
    //debug
    //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;
    //close the zip -- done!
    $zip->close();
    //check to make sure the file exists
    return file_exists($destination);
  }
  else
  {
    return false;
  }
}

使用方法:

$files_to_zip = array(
  'preload-images/1.jpg',
  'preload-images/2.jpg',
  'preload-images/5.jpg',
  'kwicks/ringo.gif',
  'rod.jpg',
  'reddit.gif'
);
//if true, good; if false, zip creation failed
$result = create_zip($files_to_zip,'my-archive.zip');

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
CodeIgniter php mvc框架 中国网站
May 26 PHP
PHP Header用于页面跳转要注意的几个问题总结
Oct 03 PHP
PHP正则表达式之定界符和原子介绍
Oct 05 PHP
PHP Directory 函数的详解
Mar 07 PHP
dhtmlxTree目录树增加右键菜单以及拖拽排序的实现方法
Apr 26 PHP
PHP 动态生成静态HTML页面示例代码
Jan 15 PHP
叫你如何修改Nginx与PHP的文件上传大小限制
Sep 10 PHP
PHP访问数据库集群的方法小结
Mar 14 PHP
php 从指定数字中获取随机组合的简单方法(推荐)
Apr 05 PHP
php微信开发之音乐回复功能
Jun 14 PHP
Laravel使用swoole实现websocket主动消息推送的方法介绍
Oct 20 PHP
php 解析非标准json、非规范json
Apr 01 PHP
Yii2 rbac权限控制操作步骤实例教程
Apr 29 #PHP
PHP.vs.JAVA
Apr 29 #PHP
Yii实现简单分页的方法
Apr 29 #PHP
php实现在站点里面添加邮件发送的功能
Apr 28 #PHP
php提交过来的数据生成为txt文件
Apr 28 #PHP
php生成txt文件实例代码介绍
Apr 28 #PHP
100行PHP代码实现socks5代理服务器
Apr 28 #PHP
You might like
绿山咖啡和蓝山咖啡
2021/03/04 新手入门
php中$_SERVER[PHP_SELF] 和 $_SERVER[SCRIPT_NAME]之间的区别
2009/09/05 PHP
PHP实现打包zip并下载功能
2018/06/12 PHP
用javascript实现给出的盒子的序列是否可连为一矩型
2007/08/30 Javascript
Javascript学习笔记1 数据类型
2010/01/11 Javascript
js实现双向链表互联网机顶盒实战应用实现
2011/10/28 Javascript
jQuery.prototype.init选择器构造函数源码思路分析
2013/02/05 Javascript
从零学JS之你需要了解的几本书
2014/05/19 Javascript
jquery制作漂亮的弹出层提示消息特效
2014/12/23 Javascript
jQuery实现移动端滑块拖动选择数字效果
2015/12/24 Javascript
[原创]Javascript 实现广告后加载 可加载百度谷歌联盟广告
2016/05/11 Javascript
jQuery基础知识点总结(DOM操作)
2016/06/01 Javascript
jQuery插件编写步骤详解
2016/06/03 Javascript
js删除数组元素、清空数组的简单方法(必看)
2016/07/27 Javascript
jQuery的图片轮播插件PgwSlideshow使用详解
2016/08/11 Javascript
详解使用Typescript开发node.js项目(简单的环境配置)
2017/10/09 Javascript
详解vue 在移动端体验上的优化解决方案
2019/05/20 Javascript
详解vue实现坐标拾取器功能示例
2020/11/18 Vue.js
[03:20]2015国际邀请赛全明星表演赛
2015/08/08 DOTA
Python正则表达式教程之三:贪婪/非贪婪特性
2017/03/02 Python
python获取多线程及子线程的返回值
2017/11/15 Python
python利用OpenCV2实现人脸检测
2020/04/16 Python
python使用xpath中遇到:到底是什么?
2018/01/04 Python
pandas数据处理基础之筛选指定行或者指定列的数据
2018/05/03 Python
python使用requests模块实现爬取电影天堂最新电影信息
2019/04/03 Python
Django Rest framework频率原理与限制
2019/07/26 Python
Python CategoricalDtype自定义排序实现原理解析
2020/09/11 Python
python在CMD界面读取excel所有数据的示例
2020/09/28 Python
Pycharm常用快捷键总结及配置方法
2020/11/14 Python
幼儿如何来做好自我评价
2013/11/05 职场文书
大学生个人先进事迹材料范文
2014/05/03 职场文书
基本公共卫生服务健康教育工作方案
2014/05/22 职场文书
结婚司仪主持词
2015/06/29 职场文书
2016创先争优活动党员公开承诺书
2016/03/24 职场文书
2016年社区六一儿童节活动总结
2016/04/06 职场文书
python入门学习关于for else的特殊特性讲解
2021/11/20 Python