PhpSpreadsheet正在破坏文件

时间:2017-09-07 09:08:24

标签: excel phpexcel phpoffice phpspreadsheet

我正在使用PhpSpreadsheet修改现有文件并将其发送到浏览器,但每次下载excel文件时都会出现以下错误:

  

我们发现filename.xlsx中的某些内容存在问题。你想让我们尽可能多地尝试恢复吗?如果您信任此工作簿的来源,请单击“是”。

我已经删除了以下代码的所有内容。我打开的模板文件是一个全新的excel文件,没有对其进行任何编辑(以避免错误已经存在于模板中)。我可以从驱动器中打开此文件,没有任何问题。

$spreadsheet = IOFactory::load(storage_path() ."\Template - English.xlsx");

// Redirect output to a client’s web browser (Xlsx)
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="filename.xlsx"');
header('Cache-Control: max-age=0');

// If you're serving to IE 9, then the following may be needed
header('Cache-Control: max-age=1');

// If you're serving to IE over SSL, then the following may be needed
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); // always modified
header('Cache-Control: cache, must-revalidate'); // HTTP/1.1
header('Pragma: public'); // HTTP/1.0

$writer = IOFactory::createWriter($spreadsheet, 'Xlsx');
$writer->save('php://output');

一旦我完成修复过程,我会从Excel收到以下消息,一切似乎都正常。

  

Excel完成了文件级验证和修复。本工作簿的某些部分可能已被修复或丢弃。

**编辑:** 使用$spreadsheet = new \PhpOffice\PhpSpreadsheet\Spreadsheet();

生成新文件时发生同样的错误

1 个答案:

答案 0 :(得分:0)

我不知道您是否解决了您的问题,但我也有。 我的代码如下:

$strFilename = sprintf('%s_%s_subscriptions', date('Y-m-d-H-i'), $alias);
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="'.$strFilename.'.xlsx"');
header('Cache-Control: max-age=0');
$writer = IOFactory::createWriter($objSpreadsheet, 'Xlsx');
$writer->save('php://output');

Excel会提示与您相同的错误。但是看起来PHPSpreadSheet创建了一个缓冲区,并且在保存电子表格后不会将其关闭。 通过添加“模具”;在最后一行之后,它解决了问题...

最后的代码:

$strFilename = sprintf('%s_%s_subscriptions', date('Y-m-d-H-i'), $alias);
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="'.$strFilename.'.xlsx"');
header('Cache-Control: max-age=0');
$writer = IOFactory::createWriter($objSpreadsheet, 'Xlsx');
$writer->save('php://output');
die;

希望有帮助!