我正在尝试使用HTML2PDF类将一些html内容转换为pdf。但我收到以下错误
致命错误:未捕获ERROR n°4
文件: /html2pdf/_class/parsingHtml.class.php
行:120
HTML代码 无效,标签不会以有序的方式关闭。
我正在使用的代码如下:
<?php
require_once('html2pdf.class.php');
$filename = 'test.html';
$report=file_get_contents($filename);
$content = '';
$content .="<page footer='page' backtop='20%' backbottom='13%' backleft='1%' backright='1%'>";
$content .= $report;
$content .="</page>";
ob_get_clean();
$pdf = new HTML2PDF('P','A4','en','true','UTF-8');
$pdf->WriteHTML($content,false);
ob_end_clean();
$pdf->Output('Demographic_Analysis.pdf');
exit;
?>
请帮忙