wordpress插件 - dompdf - 标头已发送错误?

时间:2012-05-31 13:29:28

标签: php wordpress-plugin wordpress

这是dompdf的链接,http://code.google.com/p/dompdf/

用于将html转换为pdf。

当我尝试正常使用它(不使用插件)时,我没有得到错误,它工作正常。当我试图在wordpress插件中使用它时,我收到错误,标题已经发送,这是什么解决方案?如果你想试验,试试这段代码

<?php
require_once("dompdf_config.inc.php");

$html =
'<html><body>'.
'<p>Put your html here, or generate it with your favourite '.
'templating system.</p>'.
'</body></html>';

$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("sample.pdf");

?>

0 个答案:

没有答案