在Table.php第173行中除以零ErrorException:在laravel dompdf转换器中

时间:2018-04-21 04:41:03

标签: laravel dompdf

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
    <td>
        <table align="center" border="0" cellpadding="0" cellspacing="0" width="700" style="max-width:700px;background:white;padding: 10px;">
            <tr>
                <td align="center">
                    <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                            <td style="color: brown;font-size: 18px;font-weight: bold;">Walkover Web Solutions Private Limited</td>
                        </tr>
                    </table>
                </td>
            </tr>

我通过dompdf将此html转换为pdf时得到除零错误。我可以知道我在这里做错了什么。

2 个答案:

答案 0 :(得分:0)

得到修复它导致问题的地方。看起来这个dompdf不接受表样式中的cellpadding="0" cellspacing="0"。从表格的风格中删除它后,它工作正常。即使设计没有达到标准,但仍然可以解决此错误

答案 1 :(得分:0)

(打开的td)和(关闭的td)必须写在不同的行而不是同一行。

示例:

<td>
This is correct way.
</td>

<td>This is wrong way</td>