欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2024-03-11 17:10:55
前言 本文主要给大家介绍的是关于php/thinkphp实现批量打包下载文件的相关内容,分享出来供大家参考学习,话不多说了,来一起看看详细的介绍: 需求描述: 有数个...

前言

本文主要给大家介绍的是关于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/

总结

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