codeigniter 导出Excel可能暂时关闭,或者它可能已永久移动到新网址

ebdffaop  于 2022-12-07  发布在  其他
关注(0)|答案(1)|浏览(160)

我已经创建了导出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');

但是当导出时,它显示:

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

有人有解决办法吗?

webghufk

webghufk1#

我忘记加载IOFactory类
$this->load->library('PHPExcel/IOFactory.php');

相关问题