嗯,首先,这是我的文件夹结构:
images/
image1.png
image11.png
image111.png
image223.png
generate_zip.php
这是我的generate_zip.php:
<?php
$files = array($listfiles);
$zipname = 'adcs.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='adcs.zip'");
header('Content-Length: ' . filesize($zipname));
header("Location: adcs.zip");
?>
如何收集“images /”文件夹中的所有文件,“generate_zip.php”除外,并使其成为可下载的.zip文件?在这种情况下,“images /”文件夹始终具有不同的图像。这可能吗?
答案 0 :(得分:57)
包括所有子文件夹:
new GoodZipArchive('path/to/input/folder', 'path/to/output_zip_file.zip') ;
首先,请添加此piece of code。
答案 1 :(得分:26)
这将确保不会添加扩展名为.php的文件:
foreach ($files as $file) {
if(!strstr($file,'.php')) $zip->addFile($file);
}
编辑:这是重写的完整代码:
<?php
$zipname = 'adcs.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
if ($handle = opendir('.')) {
while (false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != ".." && !strstr($entry,'.php')) {
$zip->addFile($entry);
}
}
closedir($handle);
}
$zip->close();
header('Content-Type: application/zip');
header("Content-Disposition: attachment; filename='adcs.zip'");
header('Content-Length: ' . filesize($zipname));
header("Location: adcs.zip");
?>
答案 2 :(得分:1)
由于您只需要目录中的特定文件来创建ZipArchive,因此您可以使用glob()函数来执行此操作。
<?php
$zip = new ZipArchive;
$download = 'download.zip';
$zip->open($download, ZipArchive::CREATE);
foreach (glob("images/*.png") as $file) { /* Add appropriate path to read content of zip */
$zip->addFile($file);
}
$zip->close();
header('Content-Type: application/zip');
header("Content-Disposition: attachment; filename = $download");
header('Content-Length: ' . filesize($download));
header("Location: $download");
?>
如果您尝试列出存储了大量文件的目录中的文件(超过100.000),请不要使用glob()。您得到“允许的内存大小为XYZ字节耗尽...”错误。
readdir()是更稳定的方式。
答案 3 :(得分:0)
将您的foreach循环更改为除generate_zip.php
foreach ($files as $file) {
if($file != "generate_zip.php"){
$zip->addFile($file);
}
}
答案 4 :(得分:0)
<?php
ob_start();
$zip = new ZipArchive;
$zip->open('sample.zip', ZipArchive::CREATE);
$srcDir = "C:\\xampp\\htdocs\\uploads"; //location of the directory
$files= scandir($srcDir);
print_r($files); // to check if files are actually coming in the array
unset($files[0],$files[1]);
foreach ($files as $file) {
$zip->addFile($srcDir.'\\'.$file, $file);
echo "bhandari";
}
$zip->close();
$file='sample.zip';
if (headers_sent()) {
echo 'HTTP header already sent';
} else {
if (!is_file($file)) {
header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found');
echo 'File not found';
} else if (!is_readable($file)) {
header($_SERVER['SERVER_PROTOCOL'].' 403 Forbidden');
echo 'File not readable';
} else {
header($_SERVER['SERVER_PROTOCOL'].' 200 OK');
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: Binary");
header("Content-Length: ".filesize($file));
header("Content-Disposition: attachment; filename=\"".basename($file)."\"");
while (ob_get_level()) {
ob_end_clean();
}
readfile($file);
exit;
}
}
?>`enter code here`
注意:不要忘记使用ob_start();。然后结束。
答案 5 :(得分:0)
我接受way2vin的解决方案。但是我不得不替换
$ zip-> addFile(“ {$ file}”);
使用
$ zip-> addFromString(basename($ file),file_get_contents($ file));
成功了。在这里找到此内容:Creating .zip file