使用dom-pdf时在laravel中获取空白页面

时间:2016-03-19 12:30:05

标签: laravel-4 dompdf

我正在使用带有dompdf的laravel 4.2。 我的控制器:

public function getLedgerReport() {
    $pdf = PDF::loadView('sales.ledger_report')->setPaper('a4');
    $pdf->stream();
}

我的观点:

<?php
 ini_set('max_execution_time', 300); //300 seconds = 5 minutes
 $html = '';
 $html .= '<html><body>hi</body></html>';
 echo $html;
?>

在Pdf文件中给出“hi”的代码。

public function getLedgerReport() {
    $pdf = PDF::loadView('sales.ledger_report')->setPaper('a4');
    $pdf->stream();
    $invoice_path = 'downloads/invoices/invoice.pdf';
    $pdf->save($invoice_path);
}

我得到一个空白页而不是获得'hi'文本。 但是当我将其保存为pdf文件时,我确实在文件中看到了“hi”。

0 个答案:

没有答案