【问题标题】:how to view pdf file in codeigniter using dompdf?如何使用 dompdf 在 codeigniter 中查看 pdf 文件?
【发布时间】: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


    【解决方案1】:

    希望对你有帮助

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

    【讨论】:

    • 代码运行良好。问题是我正在使用互联网下载管理器。它下载pdf文件。谢谢!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2013-11-27
    • 2014-07-31
    • 1970-01-01
    • 1970-01-01
    • 2014-09-05
    • 2021-06-25
    • 1970-01-01
    相关资源
    最近更新 更多