作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将页 footer 分放在文档的每一页上,除了第一页。
我通过扩展 TCPPDF 类并覆盖其页脚方法来创建我的自定义页脚。
然后根据文档并使用以下示例,我明白我应该使用 SetPrintHeader 和 SetPrintFooter 方法:
http://www.tcpdf.org/examples/example_002.phps
// Page one
$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);
$pdf->AddPage();
// Page two and on ..
$pdf->SetPrintHeader(true);
$pdf->SetPrintFooter(true);
$pdf->AddPage();
最佳答案
我觉得
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);
$pdf->AddPage();
// Page two and on ..
$pdf->SetPrintHeader(true);
$pdf->SetPrintFooter(true);
function Header(){
$pageN = PageNo();
if($pageN % 2 === 0){
//if page is 2/4/6... don't print anything
return;
}else{
//do your stuff
}
关于TCPDF - 仅在某些页面上有页脚/页眉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8520446/
我是一名优秀的程序员,十分优秀!