如何在 Zend-Framework 中使用 dompdf?
我的控制器中有以下代码,但无法打开它生成的 pdf。
$html = "<html><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'></head><body>trial</body></html>";
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("sample.pdf");
它在框架之外使用时有效,但我不知道如何检查 pdf 是如何被破坏的。任何帮助将不胜感激!
编辑:
我正在使用 Zend Framework 1.10 并遵循本教程
http://www.encapsulated.org/blog/2009/08/27/how-to-let-dompdf-and-zend-framework-play-along/
I have the following code inside my controller but I can't open the pdf it produces.
$html = "<html><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'></head><body>trial</body></html>";
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("sample.pdf");
It works when used outside the framework but I don't know how to check how the pdf is mangled in any way. Any help will be appreciated!
EDIT:
I'm using Zend Framework 1.10 and followed this tutorial
http://www.encapsulated.org/blog/2009/08/27/how-to-let-dompdf-and-zend-framework-play-along/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到解决方案:
我在生成 pdf 的操作中禁用了布局和视图脚本。
Found the solution:
I disabled the layout and viewscript inside the action generating the pdf.