如何使用dompdf在codeigniter中查看pdf文件



我不知道如何查看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..

如果仍然面临问题。请确保您没有使用任何下载管理器。

希望这能帮助

$this->dompdf->stream("mypdf.pdf", array("Attachment" => 0));
exit(0);

相关内容

  • 没有找到相关文章

最新更新