这是 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");
?>