mPDF如何仅为首页设置页眉

时间:2019-04-13 19:32:55

标签: php codeigniter mpdf

我想知道mPDF中是否有办法只为第一页设置页眉,并为除第一页以外的所有页面设置页脚。

一段时间以来,我一直在努力解决这个问题,不幸的是文档并没有清楚地说明这一点!

我正在开发一个codeigniter项目,这是代码:

 $header = '<table>
        <tr>
            <td class="myco" class="width:60%;">
                <img src="image_dir">
            </td>
            <td>

            </td>
            <td class="t_center font-m">

                <h2>The header title</h2>
                <p></p>

            </td>
        </tr>
    </table>';

并调用此函数的标题:

$pdf->SetHTMLHeader($header);

页脚使用相同的方式。

0 个答案:

没有答案