php脚本写入文件并创建zip文件
我正在尝试开发一个在线表单生成器。每个用户都可以构建自己的表单,我希望能够提供一个按钮,单击该按钮将下载用户的 html 表单页面及其 css 文件作为 zip 文件。
我知道如何压缩文件,但我的问题是主要用户 html 表单页面不作为单独的文件存在,其 url 位于查询字符串中,例如:
http://localhost/form.php?id=9
所以想知道如何做到这一点,
谢谢
rifki
I'm trying to develop an online formbuilder. Each user can build their own forms and I want to be able to provide a button that when clicked will download the users html form page along with its css file as a zip file.
I know how to zip the files, but my problem is that the main users html form page doesnt exist as seperate file, its url is in a query string such as:
http://localhost/form.php?id=9
So was wondering how this could be done
thanks
rifki
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
file_get_contents
、curl
或fopen
将 url 内容写入磁盘上的文件...然后将其压缩。示例:Just use
file_get_contents
,curl
, orfopen
to write the content of the url to file on disk... then zip that up. Exmaple: