将DOMPDF保存到指定目录,然后作为电子邮件发送

时间:2016-06-20 12:48:23

标签: php codeigniter dompdf

您好我正在尝试将dompdf保存到codeigniter文件中的特定目录,然后将保存的文件作为电子邮件发送。我正在使用codeigniter来完成所有这些工作。 这是功能。

public function generateCreditAggreement(){
        $this->load->helper('file'); 
        require_once(APPPATH.'third_party/dompdf/dompdf_config.inc.php');

        $pdfroot  = dirname(dirname(__FILE__));
        $pdfroot .= '/third_party/pdf/';

        $dompdf = new Dompdf();


        $msg = $this->load->view('credit_agreement_view', '', true);
        $html = mb_convert_encoding($msg, 'HTML-ENTITIES', 'UTF-8');
        $dompdf->load_html($html);

        $paper_orientation = 'Potrait'; 
        $dompdf->set_paper($paper_orientation);

            // Render the HTML as PDF
        $dompdf->render();

            // Output the generated PDF to Download folder

//          $dompdf->stream('document.pdf');

            //save the pdf file on the server
            $pdf_string =   $dompdf->output();
            file_put_contents($pdfroot, $pdf_string ); 



    }

我得到的错误是 Message: file_put_contents(C:\Apache24\htdocs\faceloan\faceloan\application/third_party/pdf/): failed to open stream: No such file or directory 但该目录确实存在,路径名称是正确的。

1 个答案:

答案 0 :(得分:1)

路径.../third_party/pdf/可能是目录而不是文件。 PHP无法将您的数据保存为目录。指定文件名作为file_put_contents()的第一个参数,例如third_party/pdf/my_document.pdf