dompdf中的以下代码不起作用。
<?php
require_once 'dompdf/dompdf_config.inc.php';
use Dompdf\Dompdf;
$dompdf = new Dompdf();
$output= file_get_contents('upload.php');
$dompdf->loadHtml(html_entity_decode($output));
$dompdf->setPaper('A5', 'landscape');
$dompdf->render();
$dompdf->stream('codexworld',array('Attachment'=>0));
?>
我希望upload.php页面转换为pdf格式。但是,错误不断发生。