在用户使用用户编辑将内容可编辑元素编辑为PDF后,我需要一种转换HTML的方法 请找到以下代码转换HTML页面但没有用户编辑:
include("mpdf60/mpdf.php");
$wide=300;
$hight=300;
$mpdf=new mPDF('',array($wide,$hight), 0, '', 15, 15, 16, 16, 9, 9);
$mpdf->WriteHTML(file_get_contents('test.html'));
$mpdf->Output();
exit;