我正在使用mpdf在PHP中生成pdf报告,当我使用XAMPP在我的开发PC上进行测试时,pdf报告显示在浏览器中,但当我将其托管到网络服务器时,它无法在浏览器中打开并开始下载
这是我的代码
include("mpdf/mpdf.php");
$mpdf=new mPDF();
$html = 'some html'
$mpdf->WriteHTML($html);
$mpdf->mirrorMargins = 1;
$mpdf->SetDisplayMode('fullwidth','continuous');
$mpdf->output();
exit();
webserver ???
有什么问题修改
我发现这是由于安装了IDM,如何防止IDM下载文件
答案 0 :(得分:0)
也许服务器发送了不同的标题信息。
// set these two header to open the file in your browser
header("Content-Type: application/pdf");
header("Content-Disposition: inline; yourfilename.pdf");
include("mpdf/mpdf.php");
$mpdf=new mPDF();
$html = 'some html'
$mpdf->WriteHTML($html);
$mpdf->mirrorMargins = 1;
$mpdf->SetDisplayMode('fullwidth','continuous');
$mpdf->output();
exit();