使用 php 将多个文件下载为 zip 文件

2022-08-30 07:09:09

如何使用php将多个文件下载为zip文件?


答案 1

可以使用 ZipArchive 类创建 ZIP 文件并将其流式传输到客户端。像这样:

$files = array('readme.txt', 'test.html', 'image.gif');
$zipname = 'file.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
foreach ($files as $file) {
  $zip->addFile($file);
}
$zip->close();

并流式传输它:

header('Content-Type: application/zip');
header('Content-disposition: attachment; filename='.$zipname);
header('Content-Length: ' . filesize($zipname));
readfile($zipname);

第二行强制浏览器向用户显示下载框,并提示名称文件名.zip。第三行是可选的,但某些(主要是较旧的)浏览器在某些情况下存在问题,而无需指定内容大小。


答案 2

这是一个在PHP中制作ZIP的工作示例:

$zip = new ZipArchive();
$zip_name = time().".zip"; // Zip name
$zip->open($zip_name,  ZipArchive::CREATE);
foreach ($files as $file) {
  echo $path = "uploadpdf/".$file;
  if(file_exists($path)){
  $zip->addFromString(basename($path),  file_get_contents($path));  
  }
  else{
   echo"file does not exist";
  }
}
$zip->close();

推荐