我在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));
?>