這篇文章主要介紹了PHP zip壓縮包操作類,結合完整執行個體形式分析了php封裝的針對zip檔案解壓、壓縮、遞迴建立、讀取等相關操作,需要的朋友可以參考下
本文執行個體講述了PHP zip壓縮包操作類。分享給大家供大家參考,具體如下:
<?php/** * Zip 檔案包工具 * * @author wengxianhu * @date 2013-08-05 */class ZipFolder{ protected $zip; protected $root; protected $ignored_names; public function __construct(){ $this->zip = new ZipArchive; } /** * 解壓zip檔案到指定檔案夾 * * @access public * @param string $zipfile 壓縮檔路徑 * @param string $path 壓縮包解壓到的目標路徑 * @return booleam 解壓成功返回 true 否則返回 false */ public function unzip ($zipfile, $path) { if ($this->zip->open($zipfile) === true) { $file_tmp = @fopen($zipfile, "rb"); $bin = fread($file_tmp, 15); //唯讀15位元組 各個不同檔案類型,頭資訊不一樣。 fclose($file_tmp); /* 只針對zip的壓縮包進行處理 */ if (true === $this->getTypeList($bin)) { $result = $this->zip->extractTo($path); $this->zip->close(); return $result; } else { return false; } } return false; } /** * 建立壓縮檔 * * @access public * @param string $zipfile 將要產生的壓縮檔路徑 * @param strng $folder 將要被壓縮的檔案夾路徑 * @param array $ignored 要忽略的檔案清單 * @return booleam 壓縮包產生成功返回true 否則返回 false */ public function zip ($zipfile, $folder, $ignored = null) { $this->ignored_names = is_array($ignored) ? $ignored : $ignored ? array($ignored) : array(); if ($this->zip->open($zipfile, ZIPARCHIVE::CREATE) !== true) { throw new Exception("cannot open <$zipfile>\n"); } $folder = substr($folder, -1) == '/' ? substr($folder, 0, strlen($folder)-1) : $folder; if(strstr($folder, '/')) { $this->root = substr($folder, 0, strrpos($folder, '/')+1); $folder = substr($folder, strrpos($folder, '/')+1); } $this->createZip($folder); return $this->zip->close(); } /** * 遞迴添加檔案到壓縮包 * * @access private * @param string $folder 添加到壓縮包的檔案夾路徑 * @param string $parent 添加到壓縮包的檔案夾上級路徑 * @return void */ private function createZip ($folder, $parent=null) { $full_path = $this->root . $parent . $folder; $zip_path = $parent . $folder; $this->zip->addEmptyDir($zip_path); $dir = new DirectoryIterator($full_path); foreach($dir as $file) { if(!$file->isDot()) { $filename = $file->getFilename(); if(!in_array($filename, $this->ignored_names)) { if($file->isDir()) { $this->createZip($filename, $zip_path.'/'); }else { $this->zip->addFile($full_path.'/'.$filename, $zip_path.'/'.$filename); } } } } } /** * 讀取壓縮包檔案與目錄列表 * * @access public * @param string $zipfile 壓縮包檔案 * @return array 檔案與目錄列表 */ public function fileList($zipfile) { $file_dir_list = array(); $file_list = array(); if ($this->zip->open($zipfile) == true) { for ($i = 0; $i < $this->zip->numFiles; $i++) { $numfiles = $this->zip->getNameIndex($i); if (preg_match('/\/$/i', $numfiles)) { $file_dir_list[] = $numfiles; } else { $file_list[] = $numfiles; } } } return array('files'=>$file_list, 'dirs'=>$file_dir_list); } /** * 得到檔案頭與檔案類型映射表 * * @author wengxianhu * @date 2013-08-10 * @param $bin string 檔案的二進位前一段字元 * @return boolean */ private function getTypeList ($bin) { $array = array( array("504B0304", "zip") ); foreach ($array as $v) { $blen = strlen(pack("H*", $v[0])); //得到檔案頭標記位元組數 $tbin = substr($bin, 0, intval($blen)); ///需要比較檔案頭長度 if(strtolower($v[0]) == strtolower(array_shift(unpack("H*", $tbin)))) { return true; } } return false; }}
以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!