我在使用我的网络服务器上的DomPDF文档内部工作时遇到问题。但是,使用eclecticgeek.com的DomPDF调试帮助程序时,相同的HTML确实有效。因此,我知道HTML没有问题。这是指向工作代码的链接:
http://eclecticgeek.com/dompdf/debug.php?identifier=d0c3b30ed7fd65fabb5c64dda47decc5
我正在尝试在我的本地网络服务器上填充DomPDF的日志文件以帮助隔离问题,但是没有为我生成文件。这是我的完整代码,我试图通过DomPDF的选项设置日志文件,但我不确定我做得对。
<?php
require_once "sites/all/libraries/dompdf/autoload.inc.php";
use Dompdf\Dompdf;
$HTML = <<<HTML
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Macondo" rel="stylesheet">
<style type="text/css">
.fa {
display: inline;
font-style: normal;
font-variant: normal;
font-weight: normal;
font-size: 14px;
line-height: 1;
font-family: FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body>
<p><span class="fa fa-envelope"></span> Font awesome doesn't work on my webserver</p>
<p style='font-family: "FontAwesome"'>  </p> <span> this also does not work </span>
<p style='font-family: "Macondo", cursive;'> This font works</p>
</body>
</html>
HTML;
$dompdf = new \Dompdf\Dompdf(array(
'tempDir' => 'sites/test.com/modules/CCPDF/',
'isRemoteEnabled' => true,
'isPhpEnabled' => true,
'isJavascriptEnabled' => true,
'pdfBackend' => "CPDF",
'isHtml5ParserEnabled' => true,
'logOutputFile' => 'sites/test.com/modules/CCPDF/test.log',
'DOMPDF_UNICODE_ENABLED' => true
));
$dompdf->load_html($HTML);
$dompdf->setPaper('A4', 'portrait');
$dompdf->render();
$dompdf->stream();
?>
任何人都可以提供一个如何正确设置DomPDF日志文件的示例吗?
答案 0 :(得分:3)
这是我在本地调试时使用的PHP片段。
ini_set('display_errors', true);
ini_set('error_log', 'output/tester.err.log');
ini_set('log_errors', true);
error_reporting(E_ALL);
$dompdf_options = array(
'chroot' => '/',
'logOutputFile' => __DIR__ . '/dompdf.log.html',
'isHtml5ParserEnabled' => true,
'debugPng' => false,
'debugKeepTemp' => false,
'debugCss' => false,
'debugLayout' => false,
'debugLayoutLines' => false,
'debugLayoutBlocks' => false,
'debugLayoutInline' => false,
'debugLayoutPaddingBox' => false
);
$_dompdf_show_warnings = true;
$_dompdf_debug = false;
$_DOMPDF_DEBUG_TYPES = [
'page-break' => false
];
$dompdf = new Dompdf\Dompdf($dompdf_options);
echo 'Running with ' , $dompdf->version , "\n";
$_dompdf_warnings = array();
echo 'Rendering '. $test_file . "\n";
$dompdf->load_html_file($test_file);
$dompdf->render();
file_put_contents(__DIR__ . '/' . basename($test_file) . (strtolower($dompdf_options['pdfBackend']) === 'gd' ? '.png' : '.pdf'), $dompdf->output(array('compress'=>0)));
您可以使用调试设置来获取不同类型的调试信息。