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

PHP实现将多个文件压缩成zip格式并下载到本地的方法示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-17 19:09:29 浏览: 评论:0 

这篇文章主要介绍了PHP实现将多个文件压缩成zip格式并下载到本地的方法,涉及php针对文件与目录的读写、判断与zip压缩相关操作技巧,需要的朋友可以参考下。

本文实例讲述了PHP实现将多个文件压缩成zip格式并下载到本地的方法,分享给大家供大家参考,具体如下:

废话不多说,直接上代码

  1. //这里需要注意该目录是否存在,并且有创建的权限 
  2. $zipname = 'path/test.zip' 
  3. //这是要打包的文件地址数组 
  4. $files = array("mypath/test1.txt","mypath/test2.pdf"); 
  5. $zip = new ZipArchive(); 
  6. $res = $zip->open($zipname, ZipArchive::CREATE); 
  7. if ($res === TRUE) { 
  8.  foreach ($files as $file) { 
  9.  //这里直接用原文件的名字进行打包,也可以直接命名,需要注意如果文件名字一样会导致后面文件覆盖前面的文件,所以建议重新命名 
  10.   $new_filename = substr($filestrrpos($file'/') + 1); 
  11.   $zip->addFile($file$new_filename); 
  12.  } 
  13. //关闭文件 
  14. $zip->close(); 
  15.  
  16. //这里是下载zip文件 
  17. header("Content-Type: application/zip"); 
  18. header("Content-Transfer-Encoding: Binary"); 
  19. header("Content-Length: " . filesize($zipname)); 
  20. header("Content-Disposition: attachment; filename=\"" . basename($zipname) . "\""); 
  21. readfile($zipname); 
  22. exit

附:这里再为大家提供一个zip压缩类:

  1. <?php 
  2. #  
  3. # PHPZip v1.2 by Sext (sext@neud.net) 2002-11-18 
  4. #   (Changed: 2003-03-01) 
  5. #  
  6. # Makes zip archive 
  7. # Based on "Zip file creation class", uses zLib 
  8. class PHPZip 
  9.   function Zip($dir$zipfilename
  10.   { 
  11.     if (@function_exists('gzcompress')) 
  12.     {   
  13.       $curdir = getcwd(); 
  14.       if (is_array($dir))  
  15.       { 
  16.           $filelist = $dir
  17.       } 
  18.       else 
  19.       { 
  20.         $filelist = $this -> GetFileList($dir); 
  21.       } 
  22.       if ((!emptyempty($dir))&&(!is_array($dir))&&(file_exists($dir))) chdir($dir); 
  23.       else chdir($curdir); 
  24.       if (count($filelist)>0) 
  25.       { 
  26.         foreach($filelist as $filename
  27.         { 
  28.           if (is_file($filename)) 
  29.           { 
  30.             $fd = fopen ($filename"r"); 
  31.             $content = fread ($fdfilesize ($filename)); 
  32.             fclose ($fd); 
  33.             if (is_array($dir)) $filename = basename($filename); 
  34.             $this -> addFile($content$filename); 
  35.           } 
  36.         } 
  37.         $out = $this -> file(); 
  38.         chdir($curdir); 
  39.         $fp = fopen($zipfilename"w"); 
  40.         fwrite($fp$outstrlen($out)); 
  41.         fclose($fp); 
  42.       } 
  43.       return 1; 
  44.     }  
  45.     else return 0; 
  46.   } 
  47.   function GetFileList($dir
  48.   { 
  49.     if (file_exists($dir)) 
  50.     { 
  51.       $args = func_get_args(); 
  52.       $pref = $args[1]; 
  53.       $dh = opendir($dir); 
  54.       while($files = readdir($dh)) 
  55.       { 
  56.         if (($files!=".")&&($files!=".."))  
  57.         { 
  58.           if (is_dir($dir.$files))  
  59.           { 
  60.             $curdir = getcwd(); 
  61.             chdir($dir.$files); 
  62.             $file = array_merge($file$this -> GetFileList("""$pref$files/")); 
  63.             chdir($curdir); 
  64.           } 
  65.           else $file[]=$pref.$files
  66.         } 
  67.       } 
  68.       closedir($dh); 
  69.     } 
  70.     return $file
  71.   } 
  72.   var $datasec   = array(); 
  73.   var $ctrl_dir   = array(); 
  74.   var $eof_ctrl_dir = "x50x4bx05x06x00x00x00x00"
  75.   var $old_offset  = 0; 
  76.   /** 
  77.    * Converts an Unix timestamp to a four byte DOS date and time format (date 
  78.    * in high two bytes, time in low two bytes allowing magnitude comparison). 
  79.    * 
  80.    * @param integer the current Unix timestamp 
  81.    * 
  82.    * @return integer the current date in a four byte DOS format 
  83.    * 
  84.    * @access private 
  85.    */ 
  86.   function unix2DosTime($unixtime = 0) { 
  87.     $timearray = ($unixtime == 0) ? getdate() : getdate($unixtime); 
  88.     if ($timearray['year'] < 1980) { 
  89.       $timearray['year']  = 1980; 
  90.       $timearray['mon']   = 1; 
  91.       $timearray['mday']  = 1; 
  92.       $timearray['hours']  = 0; 
  93.       $timearray['minutes'] = 0; 
  94.       $timearray['seconds'] = 0; 
  95.     } // end if 
  96.     return (($timearray['year'] - 1980) << 25) | ($timearray['mon'] << 21) | ($timearray['mday'] << 16) | 
  97.         ($timearray['hours'] << 11) | ($timearray['minutes'] << 5) | ($timearray['seconds'] >> 1); 
  98.   } // end of the 'unix2DosTime()' method 
  99.   /** 
  100.    * Adds "file" to archive 
  101.    * 
  102.    * @param string  file contents 
  103.    * @param string  name of the file in the archive (may contains the path) 
  104.    * @param integer the current timestamp 
  105.    * 
  106.    * @access public 
  107.    */ 
  108.   function addFile($data$name$time = 0) 
  109.   { 
  110.     $name   = str_replace('''/'$name); 
  111.     $dtime  = dechex($this->unix2DosTime($time)); 
  112.     $hexdtime = 'x' . $dtime[6] . $dtime[7] 
  113.          . 'x' . $dtime[4] . $dtime[5] 
  114.          . 'x' . $dtime[2] . $dtime[3] 
  115.          . 'x' . $dtime[0] . $dtime[1]; 
  116.     eval('$hexdtime = "' . $hexdtime . '";'); 
  117.     $fr  = "x50x4bx03x04"
  118.     $fr  .= "x14x00";      // ver needed to extract 
  119.     $fr  .= "x00x00";      // gen purpose bit flag 
  120.     $fr  .= "x08x00";      // compression method 
  121.     $fr  .= $hexdtime;       // last mod time and date 
  122.     // "local file header" segment 
  123.     $unc_len = strlen($data); 
  124.     $crc   = crc32($data); 
  125.     $zdata  = gzcompress($data); 
  126.     $c_len  = strlen($zdata); 
  127.     $zdata  = substr(substr($zdata, 0, strlen($zdata) - 4), 2); // fix crc bug 
  128.     $fr   .= pack('V'$crc);       // crc32 
  129.     $fr   .= pack('V'$c_len);      // compressed filesize 
  130.     $fr   .= pack('V'$unc_len);     // uncompressed filesize 
  131.     $fr   .= pack('v'strlen($name));  // length of filename 
  132.     $fr   .= pack('v', 0);        // extra field length 
  133.     $fr   .= $name
  134.     // "file data" segment 
  135.     $fr .= $zdata
  136.     // "data descriptor" segment (optional but necessary if archive is not 
  137.     // served as file) 
  138.     $fr .= pack('V'$crc);         // crc32 
  139.     $fr .= pack('V'$c_len);        // compressed filesize 
  140.     $fr .= pack('V'$unc_len);       // uncompressed filesize 
  141.     // add this entry to array 
  142.     $this -> datasec[] = $fr
  143.     $new_offset    = strlen(implode(''$this->datasec)); 
  144.     // now add to central directory record 
  145.     $cdrec = "x50x4bx01x02"
  146.     $cdrec .= "x00x00";        // version made by 
  147.     $cdrec .= "x14x00";        // version needed to extract 
  148.     $cdrec .= "x00x00";        // gen purpose bit flag 
  149.     $cdrec .= "x08x00";        // compression method 
  150.     $cdrec .= $hexdtime;         // last mod time & date 
  151.     $cdrec .= pack('V'$crc);      // crc32 
  152.     $cdrec .= pack('V'$c_len);     // compressed filesize 
  153.     $cdrec .= pack('V'$unc_len);    // uncompressed filesize 
  154.     $cdrec .= pack('v'strlen($name) ); // length of filename 
  155.     $cdrec .= pack('v', 0 );       // extra field length 
  156.     $cdrec .= pack('v', 0 );       // file comment length 
  157.     $cdrec .= pack('v', 0 );       // disk number start 
  158.     $cdrec .= pack('v', 0 );       // internal file attributes 
  159.     $cdrec .= pack('V', 32 );      // external file attributes - 'archive' bit set 
  160.     $cdrec .= pack('V'$this -> old_offset ); // relative offset of local header 
  161.     $this -> old_offset = $new_offset
  162.     $cdrec .= $name
  163.     // optional extra field, file comment goes here 
  164.     // save to central directory 
  165.     $this -> ctrl_dir[] = $cdrec
  166.   } // end of the 'addFile()' method 
  167.   /** 
  168.    * Dumps out file 
  169.    * 
  170.    * @return string the zipped file 
  171.    * 
  172.    * @access public 
  173.    */ 
  174.   function file() 
  175.   { 
  176.     $data  = implode(''$this -> datasec); 
  177.     $ctrldir = implode(''$this -> ctrl_dir); 
  178.     return 
  179.       $data . 
  180.       $ctrldir . 
  181.       $this -> eof_ctrl_dir . 
  182.       pack('v', sizeof($this -> ctrl_dir)) . // total # of entries "on this disk" 
  183.       pack('v', sizeof($this -> ctrl_dir)) . // total # of entries overall 
  184.       pack('V'strlen($ctrldir)) .      // size of central dir 
  185.       pack('V'strlen($data)) .       // offset to start of central dir 
  186.       "x00x00";               // .zip file comment length 
  187.   } // end of the 'file()' method 
  188. // end of the 'PHPZip' class 
  189. ?> 

用法:

  1. $zipfiles =array("/root/pooy/test1.txt","/root/pooy/test2.txt"); 
  2. $z = new PHPZip(); 
  3. //$randomstr = random(8); 
  4. $zipfile = TEMP."/photocome_".$groupid.".zip"
  5. $z->Zip($zipfiles$zipfile);

Tags: PHP文件压缩 zip

分享到: