這篇文章給大家介紹的文章內容是關於php如何?原生zip的測試(純程式碼),有很好的參考價值,希望可以協助到有需要的朋友。
//簡單測試1 public function zipTest(){ $zip = new \ZipArchive(); $res = $zip->open('static/download/zip/test.zip',\ZipArchive::CREATE); if ($res === TRUE) { echo 'ok'; $zip->addFromString('test.txt', 'file content goes here'); //解壓縮到test檔案夾 //$zip->extractTo('test'); $zip->close(); } else { echo 'failed, code:' . $res; } } //處理類class FilePackUtil{ /** * 壓縮成ZIP檔案 * @param array $file 檔案數組 * $file = array('E:/Resources/download.kekedj.com/mp3/XX/20180611/XXX/XXX.mp3', 'E:/Resources/download.kekedj.com/mp3/XX/20180611/XXX/XXX.mp3'); * @param $name 存放名字.zip * @param $output 存放路徑 * @return bool|string */ public static function zip($file = array(), $name, $output) { if(empty($file)) { return "打包檔案為空白"; } if(empty($name)) { return "請選擇輸出檔案名"; } if(empty($output)) { return "請選擇輸出目錄"; } foreach ($file as $key => $value) { $file [$key] = iconv("UTF-8", "gb2312//IGNORE", $value); //中文名轉換 } if (! is_dir ( $output )) { mkdir ( $output, 0777 ); } $filename = iconv("UTF-8", "gb2312//IGNORE", $output . $name); // 中文名轉換 最終產生的檔案名稱以及伺服器儲存的路徑 if (!file_exists($filename)) { //重建檔案 $zip = new ZipArchive (); //使用本類,linux需開啟zlib,windows需取消php_zip.dll前的注釋 if ($zip->open($filename, ZIPARCHIVE::CREATE) !== TRUE) { return '無法開啟檔案,或者檔案建立失敗。請檢查路徑、許可權以及環境變數的配置'; } foreach ($file as $val) { if (file_exists($val)) { $fileInfoArr = self::pathInfo($val); $zip->addFromString($fileInfoArr ['basename'], file_get_contents($val)); //中文使用這個 } } $zip->close(); //關閉 } if (!file_exists($filename)) { return ("無法找到檔案"); //即使建立,仍有可能失敗。。。。 } return true; } public static function remove($file) { if(!$file) return false; $file = iconv("UTF-8", "gb2312//IGNORE", $file); // 中文名轉換 @unlink($file); exec("rm -rf " . $file); return true; } /** * 讀取檔案資訊 * @author ZhiyuanLi < 956889120@qq.com > * @param $filePath * @return array */ private function pathInfo($filePath) { $path_parts = array(); $path_parts ['dirname'] = rtrim(substr($filePath, 0, strrpos($filePath, '/')), "/") . "/"; $path_parts ['basename'] = ltrim(substr($filePath, strrpos($filePath, '/')), "/"); $path_parts ['extension'] = substr(strrchr($filePath, '.'), 1); $path_parts ['filename'] = ltrim(substr($path_parts ['basename'], 0, strrpos($path_parts ['basename'], '.')), "/"); return $path_parts; }