我正在尝试通过在本地服务器上创建 zip 文件来下载一些文件。该文件以 zip 格式下载,但是当我尝试提取它时,它给了我错误:
未找到中央目录结束签名。此文件不是 zip 文件,或者它构成多部分存档的一个磁盘。在后一种情况下,中央目录和 zip 文件注释将在此存档的最后一个磁盘上找到。
这是我为此使用的代码:
function download_gallery($id) {
$this->load->library('zip');
$path = '/uploads/post/' . $id;
$this->zip->read_dir($path, FALSE);
$filename = $id . '.zip';
// http headers for zip downloads
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header('Content-Type: application/zip'); // mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); // tell browser what's the file name
header('Cache-Control: max-age=0'); // no cache
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . filesize($path, $filename));
// Download the file to your desktop. Name it "my_backup.zip"
$this->zip->download($filename);
}
我检查了传递给函数的所有变量的值,一切都很好。
顺便说一句,我正在为此使用codeigniter。