Home > Backend Development > PHP Tutorial > phpexcel 为何无法生成xlsx文件

phpexcel 为何无法生成xlsx文件

WBOY
Release: 2016-06-23 13:51:50
Original
2004 people have browsed it

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');
Copy after login

为何无法生成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');
Copy after login

可以生成xls文件。


回复讨论(解决方案)

无法生成xlsx,有错误信息吗?或者其他提示信息

经测试可以生成.xlsx ,你在$objWriter->save( 'php://output');后面加上exit();试试。

无法生成xlsx,有错误信息吗?或者其他提示信息


倒是没有出错的信息,我在文件头部增加了下面代码,可以生成xlsx文件
ini_set('display_errors', TRUE);ini_set('display_startup_errors', TRUE);
Copy after login
Copy after login

但是,遇到了一个问题,打不开文件,提示“文件格式或文件扩展名无效。请确定文件未损害.....”的信息。

我想代码应该没什么问题,这套代码可以生成xls文件,并可以打开xls文件。

经测试可以生成.xlsx ,你在$objWriter->save( 'php://output');后面加上exit();试试。



exit(); 一直都有
我在文件头部增加了下面代码,可以生成xlsx文件
ini_set('display_errors', TRUE);ini_set('display_startup_errors', TRUE);
Copy after login
Copy after login

但是,遇到了一个问题,打不开文件,提示“文件格式或文件扩展名无效。请确定文件未损害.....”的信息。
我想代码应该没什么问题,这套代码可以生成xls文件,并可以打开xls文件。 

原因找到了,ZipArchive not found
配置了一下php.ini文件,问题解决了。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template