我可以为MPDF的最后一页设置特定的页脚吗?

时间:2018-07-12 16:26:27

标签: php mpdf

我正在使用mpdf,并希望在生成的最后一个PDF页面上有一个特定的页脚。

这可能吗?

我知道您可以使用“ @page:first”来定位首页,但是“ @page:last”无效。

任何帮助都会很棒...

2 个答案:

答案 0 :(得分:2)

Add the <sethtmlpagefooter /> tag在HTML标记的最后,它将为最后一页设置定义的页脚。

<htmlpagefooter name="LastPageFooter">
    Show me on the last page
</htmlpagefooter>

Really long text that expands over multiple pages
...
...
...

<sethtmlpagefooter name="LastPageFooter" value="1" />

答案 1 :(得分:0)

我也遇到了同样的问题。 我通过在样式之后使用以下代码来修复它。

(只需将其视为变量,以便在打开和关闭“ htmlpagefooter”之间显示所有内容,并在其中插入“ sethtmlpagefooter”)

<htmlpagefooter name="footer">
contact mail etc
</htmlpagefooter>

一些身体内容

<sethtmlpagefooter name="footer" />