php – 带特殊字符的TCPDF HTML显示空PDF文件

我正在使用TCPDF库版本:5.9.011.我正在尝试以PDF格式执行HTML布局.我试过的例子提供了site

$html = '<h1>HTML Example</h1>
<h2>List</h2>
Some special characters: &lt; € &euro; &#8364; &amp; è &egrave; &copy; &gt; \\slash \\\\double-slash \\\\\\triple-slash
';
// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');

//Close and output PDF document
$pdf->Output('example_006.pdf', 'I');

显然发现生成的PDF只有默认页眉和页脚,中间内容为空.

但是,如果我删除特殊字符,如:

$html = '<h1>HTML Example</h1>
<h2>List</h2>
Some special characters:
';

PDF获取$html中指定的中间内容

解决方法:

在行$pdf-> writeHTML之前

$html = utf8_decode($html);

也许

$html = utf8_encode($html);
上一篇:PHP-Codeigniter将pdf文件作为电子邮件附件发送


下一篇:php – 如果表中的行不适合页面,如何在TCPDF上设置自动分页符?