如何在tcpdf中添加手动分页符

时间:2016-09-03 08:44:31

标签: php css pdf tcpdf html-to-pdf

Hai大家我试图在我试过的tcpdf中添加手动分页符,但它不起作用,如何打破这个...?在我需要包括编码的位置

$content = '
                <style>
                    .chead
                    {
                    ...
                </style>

                <table class="body">
                    <tr>
                        <td>
                            <table style="width:595px;">
                                <tr>
                                    '.$myhead.'
                                </tr>
                            </table>
                        </td>
                    </tr>

                    //how to add manual page break here..?

                   <tcpdf method="AddPage" />

                     <tr>
                        <td>
                            <table style="width:595px;">
                                <tr>
                                    '.$mybody.'
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>';

1 个答案:

答案 0 :(得分:0)

尝试使用:

<br pagebreak="true">

结果:

enter image description here