本篇文章給大家帶來的內容是關於PHP如何?解壓壓縮包檔案到指定目錄?(純程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。
//$src_file為檔案路徑,上傳檔案返回壓縮包路徑即可public function unzip($src_file, $dest_dir=false, $create_zip_name_dir=true, $overwrite=true){ $filePath_arr = []; if ($zip = zip_open($src_file)){ if ($zip){ $splitter = ($create_zip_name_dir === true) ? "." : "/"; if($dest_dir === false){ $dest_dir = substr($src_file, 0, strrpos($src_file, $splitter))."/"; } // 如果不存在 建立目標解壓目錄 $this->create_dirs($dest_dir); // 對每個檔案進行解壓 while ($zip_entry = zip_read($zip)){ // 檔案不在根目錄 $pos_last_slash = strrpos(zip_entry_name($zip_entry), "/"); if ($pos_last_slash !== false){ // 建立目錄 在末尾帶 / $this->create_dirs($dest_dir.substr(zip_entry_name($zip_entry), 0, $pos_last_slash+1)); } // 開啟包 if (zip_entry_open($zip,$zip_entry,"r")){ // 檔案名稱儲存在磁碟上 $file_name = $dest_dir.zip_entry_name($zip_entry); // 檢查檔案是否需要重寫 if ($overwrite === true || $overwrite === false && !is_file($file_name)){ // 讀取壓縮檔的內容 $fstream = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry)); @file_put_contents($file_name, $fstream); // 設定許可權 chmod($file_name, 0777); echo "save: ".$file_name."<br />"; } // 關閉入口 zip_entry_close($zip_entry); } } // 關閉壓縮包 zip_close($zip); } }else{ return false; } return $filePath_arr; //返回壓縮後所有檔案路徑 } /** * 建立目錄 */ public function create_dirs($path){ if (!is_dir($path)){ $directory_path = ""; $directories = explode("/",$path); array_pop($directories); foreach($directories as $directory){ $directory_path .= $directory."/"; if (!is_dir($directory_path)){ mkdir($directory_path); chmod($directory_path, 0777); } } } }