压缩目录中的所有文件并下载生成的.zip======= 工作解决方案 !======

2022-08-30 13:18:01

好吧,首先,这是我的文件夹结构:

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/”文件夹始终具有不同的图像。这可能吗?


答案 1

======= 工作解决方案 !======

包括所有子文件夹:

new GoodZipArchive('path/to/input/folder',    'path/to/output_zip_file.zip') ;

首先,包含这段代码


答案 2

这将确保不会添加扩展名为.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");

    ?>

推荐