我有一个动态生成的 HTML 内容,想使用 mPDF 生成页码 PDF。问题是当内容跨越一页以上时,页脚仅在最后一页可见。
例子:
$mpdf->AliasNbPages('{PAGETOTAL}');
$mpdf->WriteHTML($content); // $content is dynamic, it can be a series of paragraphs resulting in a 3 or 4, or more, pages long pdf.
$mpdf->setFooter('{PAGENO}/{PAGETOTAL}'); // this only prints a footer in the last page, displaying for example "3/3", but the previous pages do not have footer
我想要每一页的页脚,但我事先不知道我会有多少页或分页符在哪里。
难道我做错了什么?
至尊宝的传说