如果您需要您的使用者支援多檔案下載的話,最好的方法是建立壓縮包並提供下載。看下在 Laravel 中的實作。
事實上,這不是關於Laravel 的,而是和PHP 的關聯更多,我們準備使用從PHP 5.2 以來就存在的 ZipArchive 類別 ,如果要使用,需要確保php.ini 中的ext-zip 擴充功能開啟。
任務1: 儲存使用者的發票檔案到 storage/invoices/aaa001.pdf
下面是程式碼顯示:
$zip_file = 'invoices.zip'; // 要下载的压缩包的名称 // 初始化 PHP 类 $zip = new \ZipArchive(); $zip->open($zip_file, \ZipArchive::CREATE | \ZipArchive::OVERWRITE); $invoice_file = 'invoices/aaa001.pdf'; // 添加文件:第二个参数是待压缩文件在压缩包中的路径 // 所以,它将在 ZIP 中创建另一个名为 "storage/" 的路径,并把文件放入目录。 $zip->addFile(storage_path($invoice_file), $invoice_file); $zip->close(); // 我们将会在文件下载后立刻把文件返回原样 return response()->download($zip_file);
登入後複製
例子很簡單,對嗎?
任務2: 壓縮 全部 檔案到 storage/invoices 目錄中
Laravel 方面不需要有任何改變,我們只需要加入一些簡單的PHP 程式碼來迭代這些檔案。
$zip_file = 'invoices.zip'; $zip = new \ZipArchive(); $zip->open($zip_file, \ZipArchive::CREATE | \ZipArchive::OVERWRITE); $path = storage_path('invoices'); $files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path)); foreach ($files as $name => $file) { // 我们要跳过所有子目录 if (!$file->isDir()) { $filePath = $file->getRealPath(); // 用 substr/strlen 获取文件扩展名 $relativePath = 'invoices/' . substr($filePath, strlen($path) + 1); $zip->addFile($filePath, $relativePath); } } $zip->close(); return response()->download($zip_file);
登入後複製
到這裡基本上就算完成了。你看,你不需要任何 Laravel 的擴充包來實現這個壓縮方式。
文章轉自:https://learnku.com/laravel/t/26087