Table of Contents
PclZip 类创建ZIP文件 方法定义
使用 PclZip 类创建ZIP压缩文件
Home php教程 php手册 PHP PclZip 创建ZIP压缩文件

PHP PclZip 创建ZIP压缩文件

Jun 06, 2016 pm 08:09 PM
php zip create compression document

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压缩文件,如下图:

PclZip generate ZIP on server 使用 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

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

See all articles