php 自定义 zip 文件
目前有一个 html 表单,有 6 个复选框,每个复选框根据是否选中而给出 0 或 1 值。每个复选框均指网站上的单独 pdf 文件。将这些复选框值转换为 zip 文件的最佳方法是什么? 然后,zip 文件将作为附件传递到已经编写好的电子邮件脚本
Currently have an html form with 6 checkboxes, each one giving a value of 0 or 1 depending on whether it is checked or not. Each checkbox refers to a seperate pdf on the site. What is the best way to turn these checkbox values into a zip file?
The zip file will then be passed, as an attachment, to an emailing script, which has already been written
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的每个复选框都引用一个 PDF 文件,为什么不将该 pdf 文件的名称放入 chechbox name 属性中呢?像这样,一旦表单发布,您将获得所需的 PDF 的所有名称,并使用 ziparchive 类。
If each of your checkbox refers to a PDF file, why don't you put the name of this pdf file in the chechbox name attribute? Like this, once the form is post, you'll get all the name of the PDF required and you zip them using ziparchive class for example.