php dompdf没有呈现html

时间:2018-03-14 11:58:27

标签: php joomla3.0 dompdf

以下是我用来生成pdf文件的功能。我正在加载github存储库文档中指定的所有必需文件和类。

public function get_invoice_converted_to_pdf(){
    try {
        // reference the Dompdf namespace
        // instantiate and use the dompdf class
        $dompdf = new Dompdf();
        $dompdf->set_option('isHtml5ParserEnabled', true);
        $dompdf->loadHtml('<p>hello world</p>');
        // (Optional) Setup the paper size and orientation
        $dompdf->setPaper('A4', 'landscape');
        // Render the HTML as PDF
        $dompdf->render();
        // Output the generated PDF to Browser
        echo $dompdf->stream();
    } catch (Exception $e) {
        echo $e->getMessage();
    }
}

它生成pdf文件,但在那个pdf文件中,我看到的只是HTML代码。不是该HTML的渲染输出。

0 个答案:

没有答案