我需要使用PHPExcel类生成xls文件,但是我有扩展问题:
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="File.xls"');
header('Cache-Control: max-age=0');
...
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->save('php://output');
exit;
使用此代码浏览器想要下载File.xls.htm文件而不是File.xls ...为什么? 我使用的PHPExcel版本1.7.8,2012-10-12
答案 0 :(得分:0)
确保* .php
中没有任何空格或“空”回声