下载由PHP中的多个文件组成的Zip文件

时间:2012-07-14 17:39:15

标签: php html zip

我有一些pdf文件...我想将它们作为集合下载而不是逐个下载。 为此,我试图压缩所有pdf文件并下载。但我不知道为什么在我的代码中我正在更改ZipArchive文件名,它说损坏和损坏。 我的代码如下: -

 function zipFilesAndDownload($file_names,$archive_file_name,$file_path)
{
    $zip = new ZipArchive();
    //create the file and throw the error if unsuccessful
    if ($zip->open($archive_file_name, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE )!==TRUE) {
        exit("cannot open <$archive_file_name>\n");
    }
    //add each files of $file_name array to archive
    foreach($file_names as $files)
    {
        $zip->addFile($file_path.$files,$files);

    }
    $zip->close();
    //then send the headers to foce download the zip file
    header("Content-type: application/zip"); 
    header("Content-Disposition: attachment; filename=$archive_file_name"); 
    header("Pragma: no-cache"); 
    header("Expires: 0"); 
    readfile("$archive_file_name"); 
    exit;
}



if($button=="Save as pdf")
{
$file_names = array();
foreach($a as $key=>$as)
{
 $file_names[] = $key.'.pdf';
}
}
$archive_file_name='zipped.zip';
$file_path='/resume/';
zipFilesAndDownload($file_names,$archive_file_name,$file_path);

?>

有人可以帮帮我吗?提前谢谢。

它的工作正常,但我仍面临着两个问题,1。如果我将archive_file_name的名称更改为上面给出的以外的其他内容,则会收到存档已损坏的错误。我不知道它为什么会发生2.如果我有一个zip文件说,2 pdf然后我再次下载一个只有1 pdf的zip,这与之前的不一样。但是当我下载1 pdf的zip时,我得到3 pdf ......我不知道为什么........请帮助我。

1 个答案:

答案 0 :(得分:1)

我测试了您的zipFilesAndDownload功能,效果很好。因此,首先应检查脚本,是否在<?php起始标记之前没有发送字符或空格。

如果您的脚本在CMS中运行,您还应该清除所有输出缓冲区:while (@ob_end_clean());(如果已经发送了gzip标头,那么还要再次打开gz压缩ob_start('ob_gzhandler');

如果您已正确设置$ file_path且所有文件都存在,您还可以检查,例如:

$file_path='resume/';
if (!file_exists($file_path) || !is_dir($file_path)) {
    die("Invalid directory $file_path in ".getcwd());
}
// you can test the existence of your problematic files:
foreach ($file_names as $file) {
    if (!file_exists($file_path.$file)) {
        echo "$file not found.";
    } else {
        echo "$file is ok.";
    }
}
exit;
// end of test
zipFilesAndDownload($file_names,$archive_file_name,$file_path);

在Windows中,UTF-16 / UTF-8 /国际字符编码也存在问题,请参见此处:PHP detecting filesystem encodingHow do I use filesystem functions in PHP, using UTF-8 strings?