Can I download multiple zip files from server into one zip file?

后端 未结 2 1517
死守一世寂寞
死守一世寂寞 2021-01-26 12:54

I want to download multiple zip files from a server, and while downloading this all zip file append and download as a one zip file from server.

2条回答
  •  失恋的感觉
    2021-01-26 13:32

    To pack all zip files in the e.g. current directory and send that to the browser, try:

     header("Content-Type: archive/zip");
     passthru("zip - -0 *.zip");
    

提交回复
热议问题