创建 ZIP 文件下载,然后将其删除
我正在创建一个 PHP 脚本,它将从一个位置创建一个 zip 文件,该位置将是通过 $_GET 传递的变量。该位置将是一个文件夹,然后将被压缩,系统将提示用户下载该文件夹,下载后该文件夹将需要自动删除。
有人可以帮忙吗?
谢谢
I am looking to create a PHP script which will create a zip file from a location which will be a variable passed via $_GET. The location will be a folder which will then be zipped up and the user will be prompted to download the folder, after download the folder will need to automatically be deleted.
Can anyone help?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://php.net/manual/en/ref.zip.php
您可以执行以下操作:
读取新创建的 zip 文件并在最后将其删除,如下所示:
代码取自此处:http://php.net/manual/en/function.readfile.php
http://php.net/manual/en/ref.zip.php
You could do something like this:
read the newly created zip file and delete it at the end, like this:
Code taken frome here: http://php.net/manual/en/function.readfile.php
从 $_GET 读取位置并读取其下的所有文件并创建一个文件数组。而不是创建 zip 并下载。
以下链接会对您有所帮助
http://www.tricksofit.com/2013/10/create-zip -文件-php
read the location from $_GET and read all files under and create an array of files. than create a zip and download.
following link will help you
http://www.tricksofit.com/2013/10/create-zip-file-php