1

我在使用 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_cleanand flushbefore readfile,但这没有帮助。有什么想法吗?

4

1 回答 1

1

如果服务器上的文件是有效的,但在通过 http 传输时损坏了,我会查看 PHP 和浏览器之间的所有内容。假设您使用的是 Apache,从那里开始并为此请求禁用 gzip。我们在反向代理和双重压缩方面遇到了类似的问题。

可能必须在您的 PHP 代码中很早就调用它:

apache_setenv('no-gzip', '1');

http://php.net/apache_setenv

于 2013-11-11T18:39:28.030 回答