在php中生成zip文件我们只要使用一个php zip压缩ZipArchive函数就可以了,下面小编来给大家总结两个实现一个是利用ZipArchive生成zip,另一个压缩文件夹下所有文件.
注意:ZipArchive来压缩文件,这个是php的扩展类,自php5.2版本以后就已经支持这个扩展,如果你在使用的时候出现错误,查看下php.ini里面的extension=php_zip.dll前面的分号有没有去掉,然后再重启Apache这样才能使用这个类库.
例1,生成zip 压缩文件,代码如下:
- <?php
-
- function create_zip($files = array(),$destination = '',$overwrite = false) {
-
- if(file_exists($destination) && !$overwrite) { return false; }
-
- $valid_files = array();
-
- if(is_array($files)) {
-
- foreach($files as $file) {
-
- if(file_exists($file)) {
- $valid_files[] = $file;
- }
- }
- }
-
- if(count($valid_files)) {
-
- $zip = new ZipArchive();
- if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
- return false;
- }
-
- foreach($valid_files as $file) {
- $file_info_arr= pathinfo($file);
- $zip->addFile($file,$file_info_arr['basename']);
- }
-
-
-
-
- $zip->close();
-
-
- return file_exists($destination);
- }
- else
- {
- return false;
- }
- }
-
- define('ROOTPATH',dirname ( __FILE__ ));
-
- $files_to_zip = array(
- ROOTPATH.DIRECTORY_SEPARATOR.'PHP+jQuery+Cookbook.pdf',
- ROOTPATH.DIRECTORY_SEPARATOR.'TurboListerZeroTemplate.csv'
- );
-
- $filename='my-archive.zip';
- $result = create_zip($files_to_zip,$filename);
- ?>
例2,压缩文件夹下面的所有文夹,代码如下:
- <?php
-
-
-
- class HZip
- {
-
-
-
-
-
-
- private static function folderToZip($folder, &$zipFile, $exclusiveLength) {
- $handle = opendir($folder);
- while (false !== $f = readdir($handle)) {
- if ($f != '.' && $f != '..') {
- $filePath = "$folder/$f";
-
- $localPath = substr($filePath, $exclusiveLength);
- if (is_file($filePath)) {
- $zipFile->addFile($filePath, $localPath);
- } elseif (is_dir($filePath)) {
-
- $zipFile->addEmptyDir($localPath);
- self::folderToZip($filePath, $zipFile, $exclusiveLength);
- }
- }
- }
- closedir($handle);
- }
-
-
-
-
-
-
-
-
-
- public static function zipDir($sourcePath, $outZipPath)
- {
- $pathInfo = pathInfo($sourcePath);
- $parentPath = $pathInfo['dirname'];
- $dirName = $pathInfo['basename'];
- $sourcePath=$parentPath.'/'.$dirName;
- $z = new ZipArchive();
- $z->open($outZipPath, ZIPARCHIVE::CREATE);
- $z->addEmptyDir($dirName);
- self::folderToZip($sourcePath, $z, strlen("$parentPath/"));
- $z->close();
- }
- }
-
-
- HZip::zipDir('yourlife', 'yourlife.zip');
- ?>
ziparchive 可选参数:
1.ZipArchive::addEmptyDir
添加一个新的文件目录
2.ZipArchive::addFile
将文件添加到指定zip压缩包中。
3.ZipArchive::addFromString
添加的文件同时将内容添加进去
4.ZipArchive::close
关闭ziparchive
5.ZipArchive::extractTo
将压缩包解压
6.ZipArchive::open
打开一个zip压缩包
7.ZipArchive::getStatusString
返回压缩时的状态内容,包括错误信息,压缩信息等等
8.ZipArchive::deleteIndex
删除压缩包中的某一个文件,如:deleteIndex(0)删除第一个文件
9.ZipArchive::deleteName
删除压缩包中的某一个文件名称,同时也将文件删除. |