0

我正在使用mpdf动态 PDF 生成。我陷入了一种情况,应该在某些特定页面上调用页眉,例如如果我有 10 页,那么应该在第 5、6、7 和 9 页上调用它。

如何做到这一点?

4

1 回答 1

0

我不确定,但请参阅下面的 URL,我认为这对您很有帮助

在 PHP 中使用 DOMPDF 在 PDF 页面中的标题

或者试试这个

// 你的 dompdf 设置

$dompdf = new DOMPDF();

// add the header
$canvas = $dompdf->get_canvas();
$font = Font_Metrics::get_font("helvetica", "bold");

// the same call as in my previous example
$canvas->page_text(72, 18, "Header: {PAGE_NUM} of {PAGE_COUNT}",
                   $font, 6, array(0,0,0));

$dompdf->load_html($html);
于 2012-08-30T05:54:15.153 回答