ZIP all files in directory and download generated .zip

后端 未结 6 1596
逝去的感伤
逝去的感伤 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:37

    change your foreach loop to this to except generate_zip.php

     foreach ($files as $file) {
         if($file != "generate_zip.php"){
            $zip->addFile($file);
         }
     }
    

提交回复
热议问题