gpt4 book ai didi

php - FPDF:在页面末尾添加一些文本

转载 作者:行者123 更新时间:2023-11-30 21:25:41 24 4
gpt4 key购买 nike

我想在 PDF 的最后一页添加一些文本,例如“Prepared by”。在我的例子中,我在第一页显示 2 行数据,从第二页开始显示 3 行数据。

我遇到的问题是,如果最后一页只有 1 或 2 行数据,“Prepared by”将显示在同一页上。但是,如果最后一页有 3 行数据,“Prepared by”将显示在下一页,这是一个空白页(没有数据行)。下面是我的代码:

      $count = 0;
while ($row = mysqli_fetch_array($user3)){
//rendering row.....
//.....

if ((($count - 4) % 3) === 0) {

$pdf->AddPage();

}

$count++;
}

$pdf->Cell(0,5,'',0,1,"C");
$pdf->Cell(63,8,'Prepared by,',0,0,"C");

$pdf->Output();

谁能知道问题出在哪里以及如何解决?

最佳答案

你可以尝试添加这个。

      $count = 0;
while ($row = mysqli_fetch_array($user3)){
//rendering row.....
//.....

if ((($count - 4) % 3) === 0) {

$pdf->AddPage();

}

$count++;
function Footer()
{
// Position at 1.5 cm from bottom
$this->SetY(-15);
// Arial italic 8
$this->SetFont('Arial','I',8);
// Page number
$this->Cell(0,10,'Prepared by: Your Name');
}
}
$pdf->Output();

关于php - FPDF:在页面末尾添加一些文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59187027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com