PHP/ThinkPHP实现批量打包下载文件的方法示例

作者:体验盒子 时间:2024-05-11 09:49:00 

前言

本文主要给大家介绍的是关于PHP/ThinkPHP实现批量打包下载文件的相关内容,分享出来供大家参考学习,话不多说了,来一起看看详细的介绍:

需求描述:

有数个文件,包含图片,文档。需要根据条件自动打包成压缩包,提供下载。

解决(ZipArchive 类):

PHP提供了ZipArchive 类可为我们实现这一功能,demo:


<?php

$files = array('image.jpeg','text.txt','music.wav');
$zipname = 'enter_any_name_for_the_zipped_file.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
foreach ($files as $file) {
$zip->addFile($file);
}
$zip->close();

///Then download the zipped file.
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename='.$zipname);
header('Content-Length: ' . filesize($zipname));
readfile($zipname);

?>

ThinkPHP版


$zip = new \ZipArchive;
//压缩文件名
$filename = 'download.zip';
//新建zip压缩包
$zip->open($filename,\ZipArchive::OVERWRITE);
//把图片一张一张加进去压缩
foreach ($images as $key => $value) {
$zip->addFile($value);
}
//打包zip
$zip->close();

//可以直接重定向下载
header('Location:'.$filename);

//或者输出下载
header("Cache-Control: public");
header("Content-Description: File Transfer");
header('Content-disposition: attachment; filename='.basename($filename)); //文件名
header("Content-Type: application/force-download");
header("Content-Transfer-Encoding: binary");
header('Content-Length: '. filesize($filename)); //告诉浏览器,文件大小
readfile($filename);

区别在引用的时候路径要对,结束。

相关参考:

http://www.php.net/manual/zh/class.ziparchive.php

http://dengrongguan12.github.io/blog/2016/php-ziparchive/

总结

好了,大概就这样,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持

来源:http://www.uedbox.com/php-ziparchive-download/

标签:php,批量打包,下载文件
0
投稿

猜你喜欢

  • javascript怎么禁用浏览器后退按钮

    2024-02-25 08:49:45
  • 简单易懂的python环境安装教程

    2023-05-21 14:39:16
  • asp.net得到本机数据库实例的两种方法代码

    2024-01-27 16:00:42
  • Python数值方法及数据可视化

    2021-07-26 17:32:51
  • 详解Open Folder as PyCharm Project怎么添加的方法

    2021-06-25 05:56:53
  • python 动态生成变量名以及动态获取变量的变量名方法

    2021-05-18 10:28:20
  • Access数据库用另一种方式管理密码

    2008-10-13 12:25:00
  • 仿阿里巴巴搜索导航设计效果

    2008-04-15 15:01:00
  • 详解mysql中的concat相关函数

    2024-01-16 06:36:22
  • CSS实现垂直居中的5种方法

    2009-03-04 12:53:00
  • Python+Pygame制作简易版2048小游戏

    2022-12-01 18:05:03
  • 用Python创建声明性迷你语言的教程

    2023-08-10 04:49:42
  • Python Mysql数据库操作 Perl操作Mysql数据库

    2024-01-20 11:07:43
  • python 地图经纬度转换、纠偏的实例代码

    2021-11-06 11:12:18
  • 网站构成的基本元素—网页布局

    2008-01-04 09:49:00
  • 在VSCode中配置PHP开发环境的实战步骤

    2023-06-06 02:13:06
  • 获取SqlServer存储过程定义的三种方法

    2024-01-24 06:03:38
  • Vuex中actions的使用教程详解

    2024-04-30 08:45:29
  • python中的__slots__使用示例

    2022-05-09 17:50:56
  • Python真题案例之小学算术 阶乘精确值 孪生素数 6174问题详解

    2022-12-02 11:09:33
  • asp之家 网络编程 m.aspxhome.com