ฉันจะดาวน์โหลดไฟล์หลายไฟล์เป็นไฟล์ zip โดยใช้ php ได้อย่างไร
ฉันจะดาวน์โหลดไฟล์หลายไฟล์เป็นไฟล์ zip โดยใช้ php ได้อย่างไร
คำตอบ:
คุณสามารถใช้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 บรรทัดที่สามเป็นทางเลือก แต่บางเบราว์เซอร์ (ส่วนใหญ่เก่ากว่า) มีปัญหาในบางกรณีโดยไม่มีการระบุขนาดเนื้อหา
$zip = new ZipArchive;
แทน$zip = new ZipFile;
?
นี่คือตัวอย่างการทำงานของการสร้าง 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();
สร้างไฟล์ zip จากนั้นดาวน์โหลดไฟล์โดยตั้งค่าส่วนหัวอ่านเนื้อหา zip และส่งออกไฟล์
http://www.php.net/manual/en/function.ziparchive-addfile.php
คุณพร้อมที่จะทำกับ 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