导出Excel可能暂时关闭或可能已永久移至新的网址

时间:2019-03-11 04:28:57

标签: php codeigniter phpexcel

我已经创建了导出Excel的功能,该代码可以在另一个模块中工作

$filename='tajima_sparepart_'.date('Y-m-d_H-i').'.xlsx';
ob_end_clean();
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="'.$filename.'"');
header('Cache-Control: max-age=0');
$objWriter = IOFactory::createWriter($this->excel, 'Excel2007');
$objWriter->save('php://output');

但是当导出时,显示给我:

输出可能暂时关闭,或者可能已永久移至新的网址。

有人有解决方案吗?

1 个答案:

答案 0 :(得分:0)

已解决

我忘了加载IOFactory类

$this->load->library('PHPExcel/IOFactory.php');