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

how to view pdf file in codeigniter using dompdf?

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