使用 php 将多个文件下载为 zip 文件夹
我想让我的用户选择列出的任何类型的文件,并将它们作为 zip 文件夹并下载。文件可能是 .doc、.jpeg、.ppt 等
I want to make my user select any type of files listed and make them as a zip folder and download it. The files may be .doc,.jpeg,.ppt, etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以看看
ZipArchive
,你将能够用它创建 zip 并让用户下载它。Cletus 提供了一个非常好的答案那里。我在这里谦虚地复制他的示例
并进行流式传输:
you can take a look at
ZipArchive
, you would be able to create zips with that and let the user download it.Cletus provide a really good answer there. I humbly copy his sample here
and to stream it: