我在下面有一个代码,它成功下载了一个 .pdf 文件,但是当我打开文件时,它总是显示一条错误消息。这是我的代码:include("MPDF57/mpdf.php");
$mpdf=new mPDF('c','A4','','',32,25,27,25,16,13);
$mpdf->SetDisplayMode('fullpage');
$mpdf->showImageErrors = true;
$mpdf->list_indent_first_level = 0; // 1 or 0 - whether to indent the first level of a list
$html='<html><head></head><body>Test</body></html>'; //Assign HTML HERE
$mpdf->WriteHTML($html);
$mpdf->Output('Certificate.pdf','D');
请大家帮忙,在此先感谢。