php脚本写入文件并创建zip文件

发布于 2024-09-13 02:50:48 字数 264 浏览 6 评论 0原文

我正在尝试开发一个在线表单生成器。每个用户都可以构建自己的表单,我希望能够提供一个按钮,单击该按钮将下载用户的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谜泪 2024-09-20 02:50:48

只需使用 file_get_contentscurlfopen 将 url 内容写入磁盘上的文件...然后将其压缩。示例:

$formContent = file_get_contents('http://localhost/form.php?id=9');
$formFile = 'path/to/tmp/form.html';
file_put_contents($formFile, $formContent);

//code to zip up css and form.html

Just use file_get_contents, curl, or fopen to write the content of the url to file on disk... then zip that up. Exmaple:

$formContent = file_get_contents('http://localhost/form.php?id=9');
$formFile = 'path/to/tmp/form.html';
file_put_contents($formFile, $formContent);

//code to zip up css and form.html
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文