最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

phpexcel 为什么无法生成xlsx文件

来源:http://erdangjiade.com/topic/79974.html 你好,世界。 2017-10-04 21:03浏览(0)

phpexcel 为何无法生成xlsx文件

header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="fee_detail.xlsx"');
header('Cache-Control: max-age=0');

$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save( 'php://output');

为何无法生成xlsx文件。


header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="fee_detail.xls"');
header('Cache-Control: max-age=0');

$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->save('php://output');

可以生成xls文件。
------解决方案--------------------
无法生成xlsx,有错误信息吗?或者其他提示信息
------解决方案--------------------
经测试可以生成.xlsx ,你在$objWriter->save( 'php://output');后面加上exit();试试。

评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2