【发布时间】:2019-11-20 08:34:01
【问题描述】:
我不知道如何查看 pdf 文件。它会自动下载而不是在浏览器中查看。
这是我的代码
public function index(){
$data_user['users'] = $this->db->get('tbl_client')->result();
$this->load->view('Dashboard/Print/user_list', $data_user);
$html = $this->output->get_output();
$this->load->library('pdf');
$this->dompdf->loadHtml($html);
$this->dompdf->setPaper('A4', 'landscape');
$this->dompdf->render();
$this->dompdf->stream("mypdf.pdf");
}
SOLVED! With the answer below..
如果仍然遇到问题。确保您没有使用任何下载管理器。
【问题讨论】:
标签: php codeigniter pdf dompdf