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


Answers:


212

您可以使用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);

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


4
它不应该是$zip = new ZipArchive;不是$zip = new ZipFile;
Matthieu 2012年

@Matthieu不需要括号。看例子:php.net/manual/en/ziparchive.open.php
Lars Gyrup Brink Nielsen

1
$ zipfilename变量应该是什么意思?
Pascal Klein

$ zipfilename应该读为$ zipname-这是创建的zip的文件名(字符串形式)。
克里斯(Chris

1
它不能在Windows默认的zip开瓶器中工作,但可以在win拉链或7-zip中工作。我正在尝试在zip文件夹中添加图片,然后以zip
格式

36

这是在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();

2
这个答案有效!区别在于addFromString,addFile编码错误。
安德烈Catita


1

您已经准备好使用php zip lib,也可以使用zend zip lib,

<?PHP
// create object
$zip = new ZipArchive();   

// open archive 
if ($zip->open('app-0.09.zip') !== TRUE) {
    die ("Could not open archive");
}

// get number of files in archive
$numFiles = $zip->numFiles;

// iterate over file list
// print details of each file
for ($x=0; $x<$numFiles; $x++) {
    $file = $zip->statIndex($x);
    printf("%s (%d bytes)", $file['name'], $file['size']);
    print "
";    
}

// close archive
$zip->close();
?>

http://devzone.zend.com/985/dynamically-creating-compressed-zip-archives-with-php/

还有这个http://www.php.net/manual/en/class.ziparchive.php的 php pear lib

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.