Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 fpdf 和 fpdi 库成功生成了 PDF。问题是 *$pdf->Output(); 行打开pdf进行预览,而我被要求让它默认下载。虽然我可以更改自己的浏览器设置以强制下载,但我不能强制页面的用户进行这些设置。如果需要,我可以显示我的代码。请帮忙!
谢谢,
巴伯曼
好的。我想通了。
只需为输出方法提供参数,如下所示:
$pdf->Output("要下载的文件名.pdf", 'D');
它适用于 chrome、firefox、internet explorer 和 safari。