当前位置:首页 > PHP教程 > php类库 > 列表

一个PHP的ZIP压缩类分享

发布:smiling 来源: PHP粉丝网  添加日期:2020-11-27 15:55:21 浏览: 评论:0 

这篇文章主要介绍了一个PHP的ZIP压缩类分享,需要的朋友可以参考下。

功能:将文件压缩成zip,或者rar的压缩包。后缀名可以自定义。

使用方法:首先实例化,然后传参。两个参数。第一个关于你文件地址的一个Array。第二个是要你要保存的压缩包文件的绝对地址。

使用例子:

  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); //添加文件列表 

PHP的ZIP压缩类如下:

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

Tags: ZIP压缩类

分享到:

相关文章