我正在使用带有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”。