ZIP文件下载php readfile()错误

时间:2015-04-05 07:32:38

标签: php mysql http zip ziparchive

我知道这个问题多次发布在这个论坛上,但请相信我,我已经尝试了所有可能的解决方案,但它对我没有用。

我正在尝试使用zip下载多个文件,虽然zip文件下载成功,但它已损坏并且我在记事本中打开后遇到错误:

  

警告:readfile(E:\ Downloads / IMG-20140831-WA0000.zip)[function.readfile]:无法打开流:没有这样的文件或目录...

我尝试了论坛中提到的所有可能的解决方案,例如header-check,web服务器用户对我创建ZIP文件的文件夹具有写入权限,下载前进行错误检查等但是确实没有#t; t锻炼了。

执行错误检查后,我遇到了类似

的内容
  

创建ZIP文件时出错:IMG-20140831-WA0000.zip

我的代码段:

function zipFilesDownload($file_names, $archive_file_name, $file_path) {
    $zip = new ZipArchive;
    if ($zip->open($archive_file_name, ZipArchive::CREATE) !== TRUE) {
        exit("cannot open <$archive_file_name>\n");
    }
    foreach($file_names as $files) {
        $zip->addFile($file_path . $files, $files);
    }
    if ($zip->close() === false) {
        exit("Error creating ZIP file : " . $archive_file_name);
    }
    if (file_exists($archive_file_name)) {
        header("Content-Description: File Transfer");
        header("Content-type: application/zip"); 
        header("Content-Disposition: attachment; filename=" . $archive_file_name . "");
        header("Pragma: no-cache");
        header("Expires: 0");
        readfile("E:\Downloads/" . $archive_file_name);
        ob_clean();
        flush();
        exit;
    } else {
        exit("Could not find Zip file to download");
    }
}
$fileNames = array(
    'D:\\xampp\htdocs\BE\Multimedia/' . $fullName,
    'D:\\xampp\htdocs\BE\Decrypt/' . $decrypt_file
);
$zip_file_name = $actualName . '.zip';
$file_path = dirname("E:\Downloads") . '/';
zipFilesDownload($fileNames, $zip_file_name, $file_path);

请提出一些解决方案。

1 个答案:

答案 0 :(得分:1)

问题似乎是这一行:

$file_path = dirname("E:\Downloads") . '/';

dirname函数“Returns parent directory's path”。这意味着$file_path将是E:\

在您的函数中,您使用$file_path方法中的$zip->addFile()来引用应添加到ZIP存档中的文件。

换句话说,如果您有一个文件数组,例如:

$files = array(
    'file1.txt',
    'file2.txt',
    'file3.txt',
);

然后,将添加到存档的文件将是:

E:\file1.txt
E:\file2.txt
E:\file3.txt

你可能想要的是添加这些文件:

E:\Downloads\file1.txt
E:\Downloads\file2.txt
E:\Downloads\file3.txt

据我所知,为了修复您的代码,您只需要使用dirname(),如下所示:

$file_path = "E:\Downloads\\";