我提交php表单时不显示pdf

时间:2018-08-02 10:13:01

标签: php dompdf

我在php中开发了一个关于测验的表格。当我提交表单时显示

  

无法流式传输pdf:标头已发送”,并显示未定义变量。我尝试更多查找错误和解决方案。但是找不到。

<?php
 require_once 'dompdf/autoload.inc.php';

//Reference the Dompdf namespace
use Dompdf\Dompdf;
$dompdf = new Dompdf();
$html = 'Here is my html code large number of line.';
$dompdf->loadHtml($html);
$dompdf->setPaper('A4','landscape');
$dompdf->render();

//Output the generated PDF
$dompdf->stream('codexworld',array('Attachment'=>0));
?>

0 个答案:

没有答案