首页 > 开发 > PHP > 正文

php文件压缩之PHPZip类用法实例

2024-05-04 23:36:27
字体:
来源:转载
供稿:网友

本文实例讲述了php文件压缩之PHPZip类用法。分享给大家供大家参考。具体如下:

 

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

使用方法:

 

 
  1. <?php 
  2. $z = new PHPZip(); //新建立一个zip的类 
  3. //方法一: 
  4. $z -> Zip("""out1.zip"); //添加当前目录和子目录下的所有档案 
  5. //方法二: 
  6. $files=array('1.txt','gb.txt'); 
  7. $files[]='5.txt'
  8. $z -> Zip($files"out2.zip"); //添加文件列表 
  9. //方法三: 
  10. $z -> Zip("/usr/local/sext/""out3.zip"); //添加指定目录 
  11. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表