Home php教程 php手册 php中PclZip插件文件解压与压缩文件

php中PclZip插件文件解压与压缩文件

May 25, 2016 pm 04:39 PM

最近在开发我的Wordpress插件ShareLink,在这过程中,发现了PclZip这个操作zip文件的PHP类,不得不推荐下,还有另外一个推荐的原因就是在它的源码里面让我发现了一个PHP函数参数的淫荡用法,下面将举例说明.

生成zip文件,用法一,代码如下:

<?php 
	 
	include_once(&#39;pclzip.lib.php&#39;); 
	 
	$archive = new PclZip(&#39;archive.zip&#39;); 
	//开源代码phprm.com 
	$v_list = $archive->create(&#39;file.txt,data/text.txt,folder&#39;); 
	 
	if ($v_list == 0) { 
	 
	die("Error : ".$archive->errorInfo(true)); 
	 
	} 
	 
	 
Copy after login

用法二,代码如下:

<?php 
	 
	include_once(&#39;pclzip.lib.php&#39;); 
	 
	$archive = new PclZip(&#39;archive.zip&#39;); 
	 
	$v_list = $archive->create(&#39;data/file.txt,data/text.txt&#39;, 
	 
	PCLZIP_OPT_REMOVE_PATH, &#39;data&#39;, 
	 
	PCLZIP_OPT_ADD_PATH, &#39;install&#39;); 
	 
	if ($v_list == 0) { 
	 
	die("Error : ".$archive->errorInfo(true)); 
	 
	} 
	 
	 
Copy after login

看见create方法的参数没有,再看看方法原型你就知道如何了,至少我还没有这样用过.

教程网址:

欢迎收藏∩_∩但请保留本文链接。

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)