ZIP all files in directory and download generated .zip

后端 未结 6 1606
逝去的感伤
逝去的感伤 2020-12-04 18:12

Well, first of all, this is my folder structure:

images/

image1.png
image11.png
image111.png
image223.png
generate_zip.php

And this is min

6条回答
  •  星月不相逢
    2020-12-04 18:29

    I went with way2vin's solution. However I had to replace

    $zip->addFile("{$file}");

    with

    $zip->addFromString(basename($file), file_get_contents($file));

    which did the trick. Found this here: Creating .zip file

提交回复
热议问题