创建 ZIP 文件下载,然后将其删除

发布于 2024-11-26 09:00:17 字数 136 浏览 0 评论 0原文

我正在创建一个 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 技术交流群。

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

发布评论

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

评论(2

2024-12-03 09:00:17

http://php.net/manual/en/ref.zip.php

您可以执行以下操作:

  • 验证获取
  • 查找文件夹是否存在
  • zip 文件夹
  • 读取新创建的 zip 文件并在最后将其删除,如下所示:

     header('内容描述:文件传输');
       header('内容类型:应用程序/八位字节流');
       header('内容处置:附件;filename='.basename($file));
       header('内容传输编码:二进制');
       header('过期时间:0');
       header('Cache-Control: 必须重新验证,后检查=0,预检查=0');
       标头('杂注:公共');
       header('内容长度:' .filesize($file));
       ob_clean();
       冲洗();
       读取文件($文件); 
       @unlink($文件);
    

代码取自此处:http://php.net/manual/en/function.readfile.php

http://php.net/manual/en/ref.zip.php

You could do something like this:

  • validate get
  • look up if the folder exists
  • zip the folder
  • read the newly created zip file and delete it at the end, like this:

       header('Content-Description: File Transfer');
       header('Content-Type: application/octet-stream');
       header('Content-Disposition: attachment; filename='.basename($file));
       header('Content-Transfer-Encoding: binary');
       header('Expires: 0');
       header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
       header('Pragma: public');
       header('Content-Length: ' . filesize($file));
       ob_clean();
       flush();
       readfile($file); 
       @unlink($file);
    

Code taken frome here: http://php.net/manual/en/function.readfile.php

夜雨飘雪 2024-12-03 09:00:17

从 $_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

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