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);

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

相关推荐:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值