DOMPDF Wordpress没有任何反应

时间:2015-05-25 09:10:06

标签: php wordpress dompdf

DOMPDF与Wordpress的集成存在问题。

以下是完成的步骤:

  1. 已安装DOMPDF 0.6.1 进入themedir / dompdf /
  2. 创建路径/ dompdf / lib / php-font-lib / classes,其中包含php lib 进口
  3. 导入“FontLib”文件夹内容 (version 0.4)进入 / DOMPDF / LIB / PHP-字体-LIB /类
  4. 以下是代码:

        require_once(echo get_template_directory_uri()."/dompdf/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(echo get_template_directory_uri()."/dompdf/testpdf.pdf");
    

    什么都没输出,我也试过了流(“testpdf.pdf”);作为最后一行,但没有成功。

    有什么想法吗?谢谢。

1 个答案:

答案 0 :(得分:0)

试试这个

include get_template_directory() . '/dompdf/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();
file_put_contents( get_template_directory() . "/dompdf/testpdf.pdf");