亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

php的zip解壓縮類pclzip使用示例

 更新時間:2014年03月14日 11:10:59   投稿:zxhpj  
PclZip是一個很強大的壓縮與解壓縮zip文件的PHP類,這篇文章主要介紹了PclZip的使用方法

PclZip簡介
PclZip是一個很強大的壓縮與解壓縮zip文件的PHP類,PclZip library能夠壓縮與解壓縮Zip格式的壓縮檔(WinZip、PKZIP);且能對此類類檔案進行處理,包括產(chǎn)生壓縮檔、列出壓縮檔的內(nèi)容以及解壓縮檔案等等。

簡單、易用、強大是我對它的評價。

最近在開發(fā)我的Wordpress插件ShareLink,在這過程中,發(fā)現(xiàn)了PclZip這個操作zip文件的PHP類,不得不推薦下。

還有另外一個推薦的原因就是在它的源碼里面讓我發(fā)現(xiàn)了一個PHP函數(shù)參數(shù)的用法。下面將舉例說明。

生成zip文件
用法一:

復(fù)制代碼 代碼如下:

< ?php
include_once('pclzip.lib.php');
$archive = new PclZip('archive.zip');
$v_list = $archive->create('file.txt,data/text.txt,folder');
if ($v_list == 0) {
    die("Error : ".$archive->errorInfo(true));
}
?>

用法二:

復(fù)制代碼 代碼如下:

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

相關(guān)文章

最新評論