当我尝试解析包含表的html数据时,它给了我错误。
致命错误:未捕获的Mpdf \ MpdfException:单词太长而无法放入 表-在 /home/users/rajat.agarwal/www/html/mve_493_sp3/app/addons/wk_invoice/lib/vendor/mpdf/mpdf/src/Mpdf.php 在19056行
$mpdf = new \Mpdf\Mpdf();
$mpdf->use_kwt = true;
// $mpdf->showImageErrors = true;
$html = '
<table>
<tr>
<td>Your table data</td>
</tr>
</table>
<div style="page-break-after: always;"> </div>
';
$mpdf->curlAllowUnsafeSslRequests = true;
$mpdf->table_error_report = true;
// $mpdf->shrink_tables_to_fit=0;
$mpdf->WriteHTML(
$html
);
$mpdf->Output();exit;
我已经尝试了许多解决方案,例如autosize="1"
或$mpdf->shrink_tables_to_fit=0
;但没有一个适合我。
Composer.json
{
"require": {
"mpdf/mpdf": "^8.0"
}}