PHP PclZip 创建ZIP压缩文件
PHP 压缩解压类 PclZip 能够压缩与解压缩Zip格式的文件(WinZip、PKZIP),它能对ZIP文件进行处理,包括产生压缩文件、列出压缩文件的内容以及解压ZIP等等。 当期最新的版本为 PclZip 2.8.2 PclZip 类创建ZIP文件 方法定义 方法: PclZip::create($filelist,
PHP 压缩解压类 PclZip 能够压缩与解压缩Zip格式的文件(WinZip、PKZIP),它能对ZIP文件进行处理,包括产生压缩文件、列出压缩文件的内容以及解压ZIP等等。
当期最新的版本为 PclZip 2.8.2
PclZip 类创建ZIP文件 方法定义
方法:
PclZip::create($filelist, [optional arguments])
此方法用来将指定的文件或者指定的文件夹下的所有的文件,生成一个ZIP压缩文件。
参数讲解:
$filelist 可以为:
- 一个或几个文件名或者文件夹的数组,比如:array(‘file.txt’, ‘data/text.txt’, ‘folder’)
- 单个文件名或者文件夹的字符串,比如:file.txt
- 逗号分离的多个文件名或者文件夹的字符串,比如:file.txt,data/text.txt,folder
arguments 为可选参数,但是我也必须讲解几个重要的,经常要使用到:
- PCLZIP_OPT_REMOVE_ALL_PATH,它能够删除掉压缩文件中的所有目录;
- PCLZIP_OPT_REMOVE_PATH,它能删除压缩文件中指定的某个目录;
- PCLZIP_OPT_ADD_PATH,它能给压缩文件统一加入到一个目录中;
使用 PclZip 类创建ZIP压缩文件
通过PclZip 类在服务器端生成ZIP压缩文件,如下图:
方法调用 (使用前require):
require_once(‘pclzip.lib.php’);
设置生成的ZIP文件保存路径:
$file_zipname = file_directory_path().’/zip/’.crc32(md5($id)).’-’.$version.".zip";
$archive = new PclZip($file_zipname);
删除压缩文件中的所有目录:
$list = $archive->create("data/file.txt images/image.gif", PCLZIP_OPT_REMOVE_ALL_PATH);Copy after login
删除压缩文件中指定的某个目录:
$list = $archive->add("/usr/local/user/test/file.txt", PCLZIP_OPT_REMOVE_PATH, "/usr/local/user");Copy after login
压缩文件加入到一个目录中:
$list = $archive->create("file.txt,image.gif", PCLZIP_OPT_ADD_PATH, "backup");Copy after login
(...)
Read the rest of PHP PclZip 创建ZIP压缩文件 (36 words)
© lixiphp for LixiPHP, 2013. | Permalink | No comment |
Add to del.icio.us
Post tags: PclZip, PHP, ZIP, 压缩解压
Feed enhanced by Better Feed from Ozh

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
