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');
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');
无法生成xlsx,有错误信息吗?或者其他提示信息
经测试可以生成.xlsx ,你在$objWriter->save( 'php://output');后面加上exit();试试。
无法生成xlsx,有错误信息吗?或者其他提示信息
ini_set('display_errors', TRUE);ini_set('display_startup_errors', TRUE);
经测试可以生成.xlsx ,你在$objWriter->save( 'php://output');后面加上exit();试试。
ini_set('display_errors', TRUE);ini_set('display_startup_errors', TRUE);
原因找到了,ZipArchive not found
配置了一下php.ini文件,问题解决了。