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();试试。
友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群