我使用PHP的ZipArchive类创建一个包含照片的zip文件,然后将其提供给浏览器下载。这是我的代码:
/**
* Grabs the order, packages the files, and serves them up for download.
*
* @param string $intEntryID
* @return void
* @author Jesse Bunch
*/
public static function download_order_by_entry_id($intUniqueID) {
$objCustomer = PhotoCustomer::get_customer_by_unique_id($intUniqueID);
if ($objCustomer):
if (!class_exists('ZipArchive')):
trigger_error('ZipArchive Class does not exist', E_USER_ERROR);
endif;
$objZip = new ZipArchive();
$strZipFilename = sprintf('%s/application/tmp/%s-%s.zip', $_SERVER['DOCUMENT_ROOT'], $objCustomer->getEntryID(), time());
if ($objZip->open($strZipFilename, ZIPARCHIVE::CREATE) !== TRUE):
trigger_error('Unable to create zip archive', E_USER_ERROR);
endif;
foreach($objCustomer->arrPhotosRequested as $objPhoto):
$filename = PhotoCart::replace_ee_file_dir_in_string($objPhoto->strHighRes);
$objZip->addFile($filename,sprintf('/press_photos/%s-%s', $objPhoto->getEntryID(), basename($filename)));
endforeach;
$objZip->close();
header('Last-Modified: '.gmdate('D, d M Y H:i:s', filemtime($strZipFilename)).' GMT', TRUE, 200);
header('Cache-Control: no-cache', TRUE);
header('Pragma: Public', TRUE);
header('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT', TRUE);
header('Content-Length: '.filesize($strZipFilename), TRUE);
header('Content-disposition: attachment; filename=press_photos.zip', TRUE);
header('Content-Type: application/octet-stream', TRUE);
ob_start();
readfile($strZipFilename);
ob_end_flush();
exit;
else:
trigger_error('Invalid Customer', E_USER_ERROR);
endif;
}
此代码适用于除IE之外的所有浏览器。在IE中,文件正确下载,但zip存档为空。在尝试提取文件时,Windows告诉我zip存档已损坏。以前有人有这个问题吗?
编辑更新:根据@profitphp的建议,我将标题更改为:
header("Cache-Control: public");
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");
header("Content-Disposition: attachment; filename=\"pressphotos.zip\"");
//header("Content-Transfer-Encoding: binary");
header("Content-length: " . filesize($strZipFilename));
此外,这是使用Firefox打开后Windows中的错误的屏幕截图:
Windows上的IE和Firefox都会出现此错误。它在Mac上运行良好。此外,在Windows中,filesize似乎是正确的:
编辑#2此问题已解决。请参阅下面的答案。
我有同样的问题,我的解决方案类似于这个线程的正确答案。当您将文件放入存档时,您不能拥有绝对文件(以斜杠开头的文件),否则由于某种原因它将无法在Windows中打开。
所以让它工作不是因为他(Jesse Bunch,在撰写本文时所选择的答案)删除了包含文件夹但是因为他删除了起始斜杠。
我通过改变来解决这个问题
$zip->addFile($file, $file); // $file is something like /path/to/file.png
至
// we make file relative by removing beginning slash so it will open in Windows
$zip->addFile($file, ltrim($file, '/'));
然后它就能在Windows中打开!
这可能与pclzip(Plahcinski的回答)有效的原因相同。我打赌它会自动剥离开始的斜线。
如果没有PHP particular comment文档页面上的ZipArchive::addFile
,我不会想到这一点。
我在zip文件名中使用时间戳。实际上Windows文件系统不支持像“:\ / *?<> |”这样的特殊字符
从时间部分删除“:”后,它就像一个魅力
以防其他人正在敲打他/她在砖墙上呆了几个小时并且像我一样受苦。我有同样的问题,没有一个解决方案有帮助,直到我意识到我在PHP中加载了一些库,其中一个在?>代码之后有一个空行。使用include(/path/to/lib/lib.php);
调用库时,会向浏览器输出一个空行,导致该zip被Windows归类为已损坏。 (Winzip,Total Commander等没有任何问题)。所以确保没有导入的库或者如果有的话,它没有空格或空行....
我一直有这个问题一个小时。在尝试了10种不同的解决方案之后,我通过在输出ZIP文件后确保脚本存在来解决它:
readfile($zip_name);
unlink($zip_name);
**exit();**
更改您的代码:
header('Content-Length: '.filesize($strZipFilename), TRUE);
附:
header('Content-Length: '.file_get_contents($strZipFilename));
我最近遇到了与你描述的类似的问题。我发现ZipArchive充其量不稳定。
我用这个简单的库解决了我的问题
http://www.phpconcept.net/pclzip
include_once('libs/pclzip.lib.php');
...
function zip($source, $destination){
$zipfile = new PclZip($destination);
$v_list = $zipfile->create($source, '', $source); }
$ source =文件夹我想压缩$ destination = zip文件位置
我花了两天的时间来寻找ZipArchive,然后在5分钟内解决了PCLZip的所有问题。
希望这可以帮助您和其他任何有此问题的人(因为这个问题接近谷歌的最高结果)。
所有这些建议都可以帮到你,但在我的情况下我需要写一个ob_clean();在第一个标题之前('');因为我打印的一些文件在打印一些破坏了Windows上的zip文件的字符之前。
$zip=new ZipArchive();
$zip->open($filename, ZIPARCHIVE::CREATE);
$zip->addFile($file_to_attach,$real_file_name_to_attach);
$zip->close();
ob_clean();
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header('Content-Type: application/x-download');
header('Content-Disposition: attachment; filename="file.zip"');
readfile($filename);
exit;
好吧,经过多次冲突,我发现了问题。问题来自以下代码行:
$objZip->addFile($filename,sprintf('/press_photos/%s-%s', $objPhoto->getEntryID(), basename($filename)));
出于某种原因,zip存档中本地(内部)文件名的路径的/press_photos/
部分导致Windows认为zip文件已损坏。修改行后看起来如下所示,Windows正确打开了zip文件。唷。
$objZip->addFile($filename,sprintf('%s-%s', $objPhoto->getEntryID(), basename($filename)));
使用特殊字符(如下划线)会导致问题,因为ZipArchive需要IBM850编码的条目名称。请参阅在线PHP手册中的评论:http://www.php.net/manual/en/function.ziparchive-addfile.php#95725。
我之前遇到过这个问题。尝试取消内容类型标题。这是我在IE和FF中使用的代码。请注意注释的行,与正在使用的组合的不同组合具有相同的问题。
header("Cache-Control: public");
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");
header("Content-Disposition: attachment; filename=\"adwords-csv.zip\"");
//header("Content-Transfer-Encoding: binary");
header("Content-length: " . filesize($filename));
除了其他人的建议之外,重要的是要注意你的文件和目录名,因为Windows不一定喜欢Linux文件路径和名称。在拉链时,它有时也会以不同的方式逃避它们。例子很多,但最重要的是
所以在你通过exec('zip ...')继续使用大量参数之前,我建议你按照一个简单的程序:
如果这样可行,最好从文件/目录名中删除已被-k选项剥离的字符,并尝试正常压缩。注意一些参数如-k有副作用。在这种情况下,-k与-q选项(对于sym链接)相矛盾。
此外,-k选项可能会使您的文件名无法读取。在我的情况下,我的文件是根据创建时间(例如10:55:39.pdf)命名的,以便于从档案中轻松找到所需的记录,但-k选项将其转换为105539.pdf,用户无法轻易读取。因此我将名称更改为10_55_39.pdf,它在Windows上打开而不使用-k选项但仍然可读。
除此之外,使用PCLZip可以让您的生活更轻松,因为您可以一次添加整个文件夹,还可以在一个简单的行中修改文件的路径。在我的情况下,我从我的zip文件中删除/ tmp / directory /第二个和第三个参数,这避免了另一个Windows兼容性问题(在zip文件中有绝对路径):
$v_list = $zip->create( $sourceFolder, PCLZIP_OPT_REMOVE_PATH, $sourceFolder . DIRECTORY_SEPARATOR);
if ($v_list == 0) {
throw new \Exception($zip->errorInfo(true));
}
我有同样的问题。这段代码对我有用,但我必须在我的php文件中放入第一行!如果我把代码放在文件的中间我没有工作。也许一些编码问题?!
// Prepare File
$file = tempnam("tmp", "zip");
$zip = new ZipArchive();
$zip->open($file, ZipArchive::OVERWRITE);
// Staff with content
$zip->addFile($filepathOnServer, 'mypic.jpg');
// Close and send to users
$zip->close();
header('Content-Type: application/zip');
header('Content-Disposition: attachment; filename="filename.zip"');
readfile($file);
unlink($file);
ob_clean(); //very important
// http headers for zip downloads
header("Pragma: public");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: public");
header('Content-Type: application/x-download');
header("Content-Disposition: attachment; filename=\"filename.zip\"");
header("Content-Length: ".filesize($filepath ));
@readfile($filepath );
unlink($filepath); //very important
exit;//very important
在尝试上述解决方案时,这对我有用。