我已经创建了导出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条答案
按热度按时间webghufk1#
我忘记加载IOFactory类
$this->load->library('PHPExcel/IOFactory.php');