我遇到过这个问题,我一直在和mPDF合作很好。但我不得不切换我的托管服务器,它不再生成pdf但只显示没有错误的内容,这是我生成pdf的代码。有什么帮助吗?
<?php include("../../mpdf60/mpdf.php");
$mpdf=new mPDF('P','A4');
$mpdf->SetDisplayMode('fullpage');
// LOAD a stylesheet
$stylesheet = file_get_contents('../../mpdf60/mpdfstyletables.css');
$mpdf->WriteHTML($stylesheet,1); // The parameter 1 tells that this is css/style only and no body/html/text
$report_content=ob_get_contents();
$mpdf-> WriteHTML($report_content,2);
$mpdf-> Output('Students_Reports.pdf','I');?>
我试图显示所有错误并修复了它们但仍然没有生成pdf :(!