PHP 将文件压缩为 zip
你好呀 好的,这就是协议,我有一个文件夹,用于存储我的 mp3 文件以供单个下载,现在我想要一个功能,您可以在压缩文件夹中一次下载所有 mp3。是否可以使用 php 压缩该文件夹中的所有文件(或者其他任何东西,但如果不是 PHP,请彻底解释),或者我是否必须以压缩格式重新上传所有 mp3?
非常感谢你。
Hello there
okay so this is the deal i have a folder where my mp3 files are stored for single download, and now i want a feature where you can download all the mp3s at once in a zipped folder. Is it possible to zip all the files from that folder using php ( or anything really but if not PHP then please explain thoroughly) or would i have to just re-upload all the mp3s again in zipped format?
Thanks you so much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只是为了演示 zipArchive 类的未记录的 addGlob() 方法的使用:
Just to demonstrate use of the undocumented addGlob() method of the zipArchive class:
有几个用于压缩的 PHP 库。你尝试过吗?
There are several PHP libraries for compression. Have you tried them?
http://php.net/manual/en/book.zip.php
马克·贝克(Mark Baker)的示例看起来不错,如果您想学习或需要更具体的东西,请阅读。
http://php.net/manual/en/book.zip.php
Mark Baker's example looks good, read up if you want to learn or need something more specific.