您好,登錄后才能下訂單哦!
小編給大家分享一下PHP/ThinkPHP如何實現批量打包下載文件,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
需求描述:
有數個文件,包含圖片,文檔。需要根據條件自動打包成壓縮包,提供下載。
解決(ZipArchive 類):
PHP提供了ZipArchive 類可為我們實現這一功能,demo:
<?php $files = array('image.jpeg','text.txt','music.wav'); $zipname = 'enter_any_name_for_the_zipped_file.zip'; $zip = new ZipArchive; $zip->open($zipname, ZipArchive::CREATE); foreach ($files as $file) { $zip->addFile($file); } $zip->close(); ///Then download the zipped file. header('Content-Type: application/zip'); header('Content-disposition: attachment; filename='.$zipname); header('Content-Length: ' . filesize($zipname)); readfile($zipname); ?>
ThinkPHP版
$zip = new \ZipArchive; //壓縮文件名 $filename = 'download.zip'; //新建zip壓縮包 $zip->open($filename,\ZipArchive::OVERWRITE); //把圖片一張一張加進去壓縮 foreach ($images as $key => $value) { $zip->addFile($value); } //打包zip $zip->close(); //可以直接重定向下載 header('Location:'.$filename); //或者輸出下載 header("Cache-Control: public"); header("Content-Description: File Transfer"); header('Content-disposition: attachment; filename='.basename($filename)); //文件名 header("Content-Type: application/force-download"); header("Content-Transfer-Encoding: binary"); header('Content-Length: '. filesize($filename)); //告訴瀏覽器,文件大小 readfile($filename);
區別在引用的時候路徑要對,結束。
看完了這篇文章,相信你對“PHP/ThinkPHP如何實現批量打包下載文件”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。