fpdf为什么要为每个单元格创建一个新页面?

时间:2018-03-07 08:46:29

标签: php fpdf

我正在尝试使用fpdf创建发票,如果它到达底部,我希望内容在下一页继续。例如,我使用此代码打印行以转到下一页。

$y = 150;
for($i = 0;$i < 50;$i++) {
$pdf->setXY(150,$y);
$pdf->SetFont('Arial','B',10);
$pdf->Cell(10,10,'Inclusief BTW: ');
$y += 5;
}

在这里它会像我期望的那样下降。 It will go all the way down 但在第二页上它显示一次。 Shows on the second page but only once 此外,还为每个单元格创建了23页。我希望它在第二页上继续使用与第一页相同的方式。

完整代码:

<?php
require('fpdf.php');
test();
function test() {
  $pdf = new FPDF();
  $pdf->addPage();
    $y = 5;
    $pdf->SetFont('Arial','I',10);

    for($i = 0;$i < 150;$i++) {
      $pdf->setXY(10,$y);
      $pdf->Cell(10,10,"Inclusief BTW",0,1);
    $y += 5;

    }
  $pdf->output();
}
?>

1 个答案:

答案 0 :(得分:1)

尝试使用以下代码:

$pdf->setXY(10,$y);
for($i = 0;$i < 150;$i++) {
    $pdf->Cell(5, 5, "Inclusief BTW", 0, 1);
}