0

我在下面有一个代码,它成功下载了一个 .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');      

请大家帮忙,在此先感谢。

4

2 回答 2

1

使用标头(“内容类型:应用程序/pdf”);

于 2013-11-04T11:25:28.417 回答
0

试试这个..会帮助你..

http://stackoverflow.com/questions/9248510/working-with-pdf-in-php
于 2013-11-04T13:00:07.177 回答