我在我的班级名称MyMethods中有这个功能:
function zipDownload($file_names,$file_path){
$zip_file_name = date('Y-m-d-h-i-s').'_attachement.zip';
$zip = new ZipArchive();
if($zip->open($zip_file_name, ZIPARCHIVE::CREATE )!==TRUE) {
echo("cannot open <".$zip_file_name.">\n");
}
else{
$filePathAry = explode("/",$file_path);
$count = count($filePathAry);
$path = '';
for($i=0; $i<=$count - 2; $i++){
$path .= $filePathAry[$i].'/';
}
$path = $this->baseDir().$path;
foreach($file_names as $files){
$zip->addFile($path,$files);
}
$zip->close();
header("Content-type: application/zip");
header("Content-Disposition: attachment; filename=".$zip_file_name);
header("Pragma: no-cache");
header("Expires: 0");
readfile($zip_file_name);
exit;
}
}
我通过表示层的以下代码来调用它:
//filled array with names of files:
loop over files name{
$filesAry[] = $fileName;
}
$method->zipDownload($filesAry,$zipPath);
关于调试我将此链接作为单个文件路径:
Path : http://localhost/sites/mySite/bdc/uploader/exhibitsFiles/06_08_2014
File Name: xyb.jpg
单击下载所有文件作为附件后,它会生成.zip文件,但它不会像正常的.zip文件一样打开?
我缺少什么?请帮帮我。感谢。
答案 0 :(得分:1)
使用文件系统路径而不是$zip->addFile()
中的http网址,并确保您添加的文件存在且可读。
如果您必须通过http获取要添加到存档的文件,请使用以下内容:
$zip->addFromString($files, file_get_contents($path));
取代:
$zip->addFile($path,$files);