我需要同时使用 DOMPDF 一起做两件事。
我需要一起做以下事情 - 这可能吗?
//print the pdf file to the screen for saving
$dompdf->stream("pdf_filename_".rand(10,1000).".pdf", array("Attachment" => false));
//save the pdf file on the server
file_put_contents('/home/stsnew/public_html/pdf/file.pdf', $dompdf->output());
如果$dompdf->stream
和$dompdf->output()
单独/单独完成以上工作正常,但是当我尝试将它们一起运行时,如上所示,它只是崩溃。
任何帮助/建议将不胜感激。