当前位置:首页 > PHP教程 > php高级应用 > 列表

php生成zip压缩文件两个实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-27 11:30:30 浏览: 评论:0 

在php中生成zip文件我们只要使用一个php zip压缩ZipArchive函数就可以了,下面小编来给大家总结两个实现一个是利用ZipArchive生成zip,另一个压缩文件夹下所有文件.

注意:ZipArchive来压缩文件,这个是php的扩展类,自php5.2版本以后就已经支持这个扩展,如果你在使用的时候出现错误,查看下php.ini里面的extension=php_zip.dll前面的分号有没有去掉,然后再重启Apache这样才能使用这个类库.

例1,生成zip 压缩文件,代码如下:

  1. <?php  
  2. /* 生成zip 压缩文件 */ 
  3. function create_zip($files = array(),$destination = '',$overwrite = false) {  
  4.     //if the zip file already exists and overwrite is false, return false  
  5.     if(file_exists($destination) && !$overwrite) { return false; }  
  6.     //vars  
  7.     $valid_files = array();  
  8.     //if files were passed in...  
  9.     if(is_array($files)) {  
  10.         //cycle through each file  
  11.         foreach($files as $file) {  
  12.             //make sure the file exists  
  13.             if(file_exists($file)) {  
  14.                 $valid_files[] = $file;  
  15.             }  
  16.         }  
  17.     }  
  18.     //if we have good files...  
  19.     if(count($valid_files)) {  
  20.         //create the archive  
  21.         $zip = new ZipArchive();  
  22.         if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {  
  23.             return false;  
  24.         }  
  25.         //add the files  
  26.         foreach($valid_files as $file) {  
  27.             $file_info_arrpathinfo($file);  
  28.             $zip->addFile($file,$file_info_arr['basename']);//去掉层级目录  
  29.         }  
  30.         //debug  
  31.         //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;  
  32.    
  33.         //close the zip -- done!  
  34.         $zip->close();  
  35.    
  36.         //check to make sure the file exists  
  37.         return file_exists($destination);  
  38.     }  
  39.     else 
  40.     {  
  41.         return false;  
  42.     }  
  43. }  
  44.    
  45. define('ROOTPATH',dirname ( __FILE__ )); //网站路径  
  46.    
  47. $files_to_zip = array(  
  48.     ROOTPATH.DIRECTORY_SEPARATOR.'PHP+jQuery+Cookbook.pdf'//开源代码phpfensi.com 
  49.     ROOTPATH.DIRECTORY_SEPARATOR.'TurboListerZeroTemplate.csv' 
  50. );  
  51. //if true, good; if false, zip creation failed  
  52. $filename='my-archive.zip';  
  53. $result = create_zip($files_to_zip,$filename); 
  54. ?> 

例2,压缩文件夹下面的所有文夹,代码如下:

  1. <?php  
  2. /*  
  3. php zip压缩文件夹下面的所有文件  
  4. */ 
  5. class HZip  
  6. {  
  7.   /**  
  8.    * 添加文件和子目录的文件到zip文件  
  9.    * @param string $folder  
  10.    * @param ZipArchive $zipFile  
  11.    * @param int $exclusiveLength Number of text to be exclusived from the file path.  
  12.    */ 
  13.   private static function folderToZip($folder, &$zipFile$exclusiveLength) {  
  14.     $handle = opendir($folder);  
  15.     while (false !== $f = readdir($handle)) {  
  16.       if ($f != '.' && $f != '..') {  
  17.         $filePath = "$folder/$f";  
  18.         // Remove prefix from file path before add to zip.  
  19.         $localPath = substr($filePath$exclusiveLength);  
  20.         if (is_file($filePath)) {  
  21.           $zipFile->addFile($filePath$localPath);  
  22.         } elseif (is_dir($filePath)) {  
  23.           // 添加子文件夹  
  24.           $zipFile->addEmptyDir($localPath);  
  25.           self::folderToZip($filePath$zipFile$exclusiveLength);  
  26.         }  
  27.       }  
  28.     }  
  29.     closedir($handle);  
  30.   }  
  31.    
  32.   /**  
  33.    * Zip a folder (include itself).  
  34.    * Usage:  
  35.    *   HZip::zipDir('/path/to/sourceDir', '/path/to/out.zip');  
  36.    *  
  37.    * @param string $sourcePath Path of directory to be zip.  
  38.    * @param string $outZipPath Path of output zip file.  
  39.    */ 
  40.   public static function zipDir($sourcePath$outZipPath)  
  41.   {  
  42.     $pathInfo = pathInfo($sourcePath);  
  43.     $parentPath = $pathInfo['dirname'];  
  44.     $dirName = $pathInfo['basename'];  
  45.     $sourcePath=$parentPath.'/'.$dirName;//防止传递'folder' 文件夹产生bug  
  46.     $z = new ZipArchive();  
  47.     $z->open($outZipPath, ZIPARCHIVE::CREATE);//建立zip文件  
  48.     $z->addEmptyDir($dirName);//建立文件夹  
  49.     self::folderToZip($sourcePath$zstrlen("$parentPath/"));  
  50.     $z->close();  
  51.   }  
  52. }  
  53.    
  54. //使用方法  
  55. HZip::zipDir('yourlife''yourlife.zip');  
  56. ?> 

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

删除压缩包中的某一个文件名称,同时也将文件删除.

Tags: php生成zip zip压缩文件实例

分享到: