ดาวน์โหลดไฟล์หลายไฟล์เป็นไฟล์ zip โดยใช้ php


คำตอบ:


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

@Matthieu วงเล็บไม่จำเป็น ดูในตัวอย่างphp.net/manual/en/ziparchive.open.php
Lars Gyrup Brink Nielsen

1
ตัวแปร $ zipfilename ควรหมายถึงอะไร?
Pascal Klein

$ zipfilename ควรอ่าน $ zipname - เป็นชื่อไฟล์ของ zip ที่สร้างขึ้นเป็นสตริง
คริส

1
มันไม่ทำงานในตัวเปิดซิปเริ่มต้นของ windows แต่ทำงานใน win zip หรือ 7-zip ฉันพยายามเพิ่มภาพในโฟลเดอร์ zip แล้วดาวน์โหลดเป็น zip
RN Kushwaha

36

นี่คือตัวอย่างการทำงานของการสร้าง ZIP ใน PHP:

$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 ถูกเข้ารหัสไม่ดี
André 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/

และยังมี php pear lib สำหรับ http://www.php.net/manual/en/class.ziparchive.php

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.