html2pdf页码编号

发布于 2024-11-16 02:08:43 字数 159 浏览 3 评论 0原文

我有这样的代码:

$html2pdf = new HTML2PDF('P','A4','en');
$html2pdf->WriteHTML($html);
$html2pdf->Output();

如何在文档底部添加页码?

I have code like this:

$html2pdf = new HTML2PDF('P','A4','en');
$html2pdf->WriteHTML($html);
$html2pdf->Output();

How add page number at the bottom of the document?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

空城缀染半城烟沙 2024-11-23 02:08:43

我仍在寻找它......我刚刚找到了解决方案:
在您的模板中,插入如下代码:

<page>
  <page_footer>
    [[page_cu]]/[[page_nb]]
  </page_footer>
</page>

此处完整示例:http://wiki.spipu .net/doku.php?id=html2pdf:en:v4:书签

i'm still looking for it ... and i have just found the solution :
in your template, insert a code like :

<page>
  <page_footer>
    [[page_cu]]/[[page_nb]]
  </page_footer>
</page>

complete sample here : http://wiki.spipu.net/doku.php?id=html2pdf:en:v4:bookmark

荒路情人 2024-11-23 02:08:43

我尝试了以下代码。

<page>
    <page_header footer='page'>
        <!-- some text-->
    </page_header>
    <!--
        Content
     -->
    <page_footer>
    </page_footer>
</page>

现在,在页脚的每一页中,我都以以下方式获取页码:

第 1/3 页
第2/3页
第 3/3 页

但我没有任何自定义格式。如果有人知道请告诉。

我已点击链接: http://wiki.spipu.net /doku.php?id=html2pdf%3aen%3av4%3apage

I tried the following code.

<page>
    <page_header footer='page'>
        <!-- some text-->
    </page_header>
    <!--
        Content
     -->
    <page_footer>
    </page_footer>
</page>

Now in each page in footer I am getting PAGE NUMBER IN THE FOLLOWING MANNER

Page 1/3
Page 2/3
Page 3/3

But i have not got any custom format. If any body know please tell.

I have followed the link : http://wiki.spipu.net/doku.php?id=html2pdf%3aen%3av4%3apage

记忆之渊 2024-11-23 02:08:43
<page backtop="7mm" backbottom="7mm" footer="page">
<page_header>
    <!-- some text-->
</page_header>
<!--
    Content
 -->
<page_footer>
</page_footer>

页面上的实例您希望在页面上显示哪种类型的选项。
不同的选项是:(页码、日期、时间、表格),以“;”分隔

您还必须指定页眉和页脚的大小。

<page backtop="7mm" backbottom="7mm" footer="page">
<page_header>
    <!-- some text-->
</page_header>
<!--
    Content
 -->
<page_footer>
</page_footer>

Instance on de page which type of option do you want on the page.
Diferents options are : (page, date, heure, form), separated by “;”

Also you have to indicate the size of the header and the footer.

明媚如初 2024-11-23 02:08:43

看看 http://www.tufat.com/docs/html2ps/calling.html 并查看 footerhtml 参数。

另请参阅http://www.tufat.com/docs/html2ps/directives.html 您可以使用的指令。

希望这能为您指明正确的方向。

Have a look at http://www.tufat.com/docs/html2ps/calling.html and look at the footerhtml parameter.

Also see http://www.tufat.com/docs/html2ps/directives.html for directives you can use.

Hope this points you in the right direction.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文