FPDF多单元格相同高度

时间:2018-11-28 18:57:58

标签: php fpdf

所以,我的问题是我正在使用FPDF从php创建pdf文件。只是一个问题。一旦文本对于单元格而言太大,就不会自动换行。因此,我来​​到了尝试使用多单元电池的地步,但是还有另一个问题。将单元格包裹在桌子中后,我无法将其他多个单元格设置为相同的高度。

这是我测试过的代码。

<?php
require('../fpdf181/fpdf.php');

$pdf = new FPDF('P', 'mm', 'A4');

$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('Arial', '', 14);

$x = $pdf->GetX();
$y = $pdf->GetY();
$push_right = 0;

$pdf->MultiCell(50,10,"TEST shdfkjhdsafhahsjdkfkhjshakjfhdsdsfhkjdkjhsafhkjdakjhsfhkjdskjhaf", "TBRL");

$pdf->SetXY($x+50, $y);

$pdf->MultiCell(50,10,"TEST shdfkjhdsafhahsjdkfkhjshakjfhdsdsfhkjdsafsdafdsafsdafsdafddkjhsafhkjdakjhsfhkjdskjhaf", "TBRL");

$pdf->Output();

从该代码中我得到了:

enter image description here

但是它应该看起来像这样:

enter image description here

1 个答案:

答案 0 :(得分:1)

对于有相同问题的人,这是它的工作方式:

function MultiCellRow($cells, $width, $height, $data, $pdf)
{
    $x = $pdf->GetX();
    $y = $pdf->GetY();
    $maxheight = 0;

    for ($i = 0; $i < $cells; $i++) {
        $pdf->MultiCell($width, $height, $data[$i]);
        if ($pdf->GetY() - $y > $maxheight) $maxheight = $pdf->GetY() - $y;
        $pdf->SetXY($x + ($width * ($i + 1)), $y);
    }

    for ($i = 0; $i < $cells + 1; $i++) {
        $pdf->Line($x + $width * $i, $y, $x + $width * $i, $y + $maxheight);
    }

    $pdf->Line($x, $y, $x + $width * $cells, $y);
    $pdf->Line($x, $y + $maxheight, $x + $width * $cells, $y + $maxheight);
}

要执行我使用的功能:MultiCellRow(3, 50, 10, ["Cell1","Cell2", "Cell3"], $pdf);