欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHPExcel导出的问题,PHP版本7.0

程序员文章站 2022-04-04 07:57:28
...

升级到php7之后phpexcel导出excel出现此问题,在php5环境下可以导出。

PHPExcel导出的问题,PHP版本7.0

code:

$objWriter = new PHPExcel_Writer_Excel5($objPHPExcel);
header("Pragma: public");
header("Expires: 0");
header("Cache-Control:must-revalidate, post-check=0, pre-check=0");
header("Content-Type:application/vnd.ms-execl");
header('Content-Disposition:attachment;filename="xxx.xls"');
header("Content-Transfer-Encoding:binary");
$objWriter->save('php://output');

回复内容:

升级到php7之后phpexcel导出excel出现此问题,在php5环境下可以导出。

PHPExcel导出的问题,PHP版本7.0

code:

$objWriter = new PHPExcel_Writer_Excel5($objPHPExcel);
header("Pragma: public");
header("Expires: 0");
header("Cache-Control:must-revalidate, post-check=0, pre-check=0");
header("Content-Type:application/vnd.ms-execl");
header('Content-Disposition:attachment;filename="xxx.xls"');
header("Content-Transfer-Encoding:binary");
$objWriter->save('php://output');

错误提示:

Fatal error: 'break' not in the 'loop' or 'switch' context in Function.php

这是1.8版本运行在php7上存在的一个Bug,将phpexcel升级至1.8.1就可以了。

github的issue有没有碰到过跟你一样的问题的人,或者*搜一下。我用过5下的execl没用过7的

相关标签: php phpexcel