php ZipArchive實現多文件打包下載實例
更新時間:2019年10月31日 15:44:27 作者:赤驥
在本篇文章里我們給各位整理了關于php ZipArchive實現多文件打包下載實例以及相關代碼,需要的朋友們可以學習下。
實例代碼:
public function downLoad($dataUrl,$saveName) { $datalist = [ ROOT_PATH.'/public/introduce/110.docx', ROOT_PATH.'/public/upfile/110.zip' ]; // print_r($datalist);die; $filename = ROOT_PATH.'\public\/'.$saveName.'.zip'; if(file_exists($filename)){ unlink($filename); } $zip = new \ZipArchive(); if ($zip->open($filename,\ZipArchive::CREATE)!== true){ exit('無法打開文件,或者文件創(chuàng)建失敗'); } foreach ($dataUrl as $index => $item) { if (DIRECTORY_SEPARATOR=='\\'){ $item = str_replace('/',DIRECTORY_SEPARATOR,$item); $filename = str_replace('/',DIRECTORY_SEPARATOR,$filename); } // var_dump($item); // var_dump(file_exists($item));die; if (file_exists($item)){ $zip->addFile($item,basename($item)); } } $zip->close(); if(!file_exists($filename)){ exit("無法找到文件"); //即使創(chuàng)建,仍有可能失敗 } header('Content-Type: application/zip'); header('Content-disposition: attachment; filename='.basename($filename)); header('Content-Length: ' . filesize($filename)); @readfile($filename); @unlink ( $filename ); }
注意:里面的路徑全部用絕對路徑,不然會找不到文件
附贈其他操作:
解壓縮zip文件
public function unzip_file($file, $dir){ // 實例化對象 $zip = new ZipArchive() ; //打開zip文檔,如果打開失敗返回提示信息 if ($zip->open($file) !== TRUE) { die ("Could not open archive"); } //將壓縮文件解壓到指定的目錄下 $zip->extractTo($dir); //關閉zip文檔 $zip->close(); }
獲取解壓文件目錄
public function loopFun($dir) { $handle = opendir($dir."."); //定義用于存儲文件名的數組 $array_file = array(); while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $array_file[] = $dir.'/'.$file; //輸出文件名 } } closedir($handle); return $array_file; //print_r($array_file); }
大家可以在本地測試下,感謝大家的學習和對腳本之家的支持。
相關文章
在Windows XP下安裝Apache+MySQL+PHP環(huán)境
這篇文章主要介紹了在Windows XP下安裝Apache+MySQL+PHP環(huán)境的要點分析,需要的朋友可以參考下2015-02-02windows下PHP_intl.dll正確配置方法(apache2.2+php5.3.5)
配置php_intl模塊總是加載失敗,在這找到了解決方法2014-01-01