我在使用 PHP 流式传输 Zip 文件以供下载时遇到问题。这是我的代码:
$arrFiles = $this->getRequest()->getPost('files', array());
$objFacultyClubDownloads = new FacultyClub_Downloads();
$objFCDownloads = $objFacultyClubDownloads->saveFacultyClubDownloadsInfo($arrFiles);
// create the zip file
$strZipName = 'download' . time() . '.zip';
$strZipSavePath = PUBLIC_PATH . '/downloads/temp/';
$objZip = new ZipArchive;
if ($objZip->open($strZipSavePath . $strZipName, ZipArchive::CREATE) === TRUE) {
foreach ($arrFiles['file_name'] as $intKey => $strValue) {
$strFilePath = PUBLIC_PATH . $strValue;
if (file_exists($strFilePath)) {
$strFileName = strtolower(basename($strValue));
$objZip->addFile($strFilePath, $strFileName);
}
}
$strZipName = $objZip->filename;
$objZip->close();
}
// strip out the layout and view
$this->getHelper('layout')->disableLayout();
$this->getHelper('viewRenderer')->setNoRender();
// stream the zip file
header('Content-Type: application/zip');
header("Content-Disposition: attachment; filename=Faculty-Club-Download.zip");
//header('Content-Length: ' . filesize($strZipName));
readfile($strZipName);
这是在 Zend 框架中。问题似乎是流媒体。下载已在 temp 文件夹中正确创建。我可以很好地解压缩那个 Zip。但是,当文件流式传输以供下载时,它会解压缩扩展名为 .cpgz 的文件。从我正在阅读的内容来看,这意味着 Zip 已损坏。当我双击它来解压缩它时,我只是得到了具有 .cpgz 扩展名的同一文件的另一个版本——它会自我复制。
我试过添加ob_clean
and flush
before readfile
,但这没有帮助。有什么想法吗?