2

我使用 dompdf 将我的 html 转换为 Pdf,我想打印它。我的问题是如何在打印窗口中打开我的 pdf 文件而不是打开下载对话框?

include('dompdf/dompdf_config.inc.php');

$savein = 'pdfdirectory/';  

$html = " my htmlcode here " 

$dompdf = new DOMPDF();
$dompdf->load_html($html);            
$dompdf->render();      

$pdf = $dompdf->output();             
file_put_contents(($savein.'file.pdf'), $pdf);           

$dompdf->stream('file.pdf'); 
4

1 回答 1

5

您不能强制用户在浏览器中打开文件,但您可以指定stream()提示浏览器是否下载文件的方法选项。默认是告诉浏览器该文件是一个“附件”,通常翻译为下载。但是,如果您按如下方式修改代码的最后一行,大多数浏览器应该在浏览器中显示 PDF:

$dompdf->stream( 'file.pdf' , array( 'Attachment'=>0 ) );
于 2013-10-04T17:51:09.847 回答