如何在 Zend-Framework 中使用 dompdf?

发布于 2024-09-26 02:10:05 字数 582 浏览 2 评论 0原文

我的控制器中有以下代码,但无法打开它生成的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

有木有妳兜一样 2024-10-03 02:10:05

找到解决方案:

    $this->_helper->layout->disableLayout();        
    $this->_helper->viewRenderer->setNoRender();

我在生成 pdf 的操作中禁用了布局和视图脚本。

Found the solution:

    $this->_helper->layout->disableLayout();        
    $this->_helper->viewRenderer->setNoRender();

I disabled the layout and viewscript inside the action generating the pdf.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文