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/
4

1 回答 1

0

找到了解决方案:

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

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

于 2010-10-04T13:55:29.750 回答