1

我在我的 Moodle 项目中使用 DOMPdf,在此我试图将 html 制作为 pdf。它在我的本地机器(Mac 系统)上运行良好。我将相同的代码放在 Windows 机器和 CentOS 服务器中;它不工作。我尝试了几个小时我无法得到解决方案。我在所有环境中都使用 PHP 5。

我尝试的解决方案:

  1. 授予 DOMPDF 文件夹的完整权限 (777)。

以下是我的代码

require_once("dompdf/dompdf_config.inc.php");

$Test='<html>
        <head>

        <title>Insert title here</title>
        </head>
        <body>    
         Sample Text
        </body>
        </html>';
    $dompdf = new DOMPDF();
    $dompdf->load_html($Test);
    $dompdf->render();
    $dompdf->stream("test.pdf");
echo $dompdf;

我不确定我做错了什么。任何帮助是极大的赞赏。

4

1 回答 1

0

我认为这个答案会帮助大家......

<?php
 require_once("C:/dompdf/dompdf_config.inc.php");

$Test='<html>
    <head>
    <title>Insert title here</title>
    </head>
    <body>    
     Sample Text
    </body>
    </html>';
$dompdf = new DOMPDF();
$dompdf->load_html($Test);
$dompdf->render();
$dompdf->stream("test.pdf");
//echo $dompdf;
?>
于 2012-10-18T10:01:22.193 回答