我目前正在使用php
将生成 excel 2007 文件的库。
$this->output->set_content_type('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
$this->output->set_header('Content-Disposition: attachment;filename="' . 'test' . '.xlsx"');
$this->output->set_header('Cache-Control: max-age=0');
$this->output->set_output($objWriter->save('php://output'));
问题是应该下载的文件的内容会在浏览器页面上回显。当我在普通的 PHP 代码上编码时我没有问题,但是在 Code Igniter 上我无法让客户端下载文件。
我已经尝试过使用force_download
代码点火器下载助手中的功能。