FPDF 在一个单元格中设置 2 个连续值

FPDF setting 2 consecutive values in one cell

我只需要了解如何在 FPDF 中设置 MySQL 数据库中的 2 个值。这些值将是连续的,中间有一个 'dash'。这是我想要做的事情的一个例子。

$pdf->Cell(110, 7,$address1 ' - ', $address2);

您使用的是逗号,但应该使用点“.”。 FPF 将这些视为以逗号分隔的不同参数。

// this will work (note the dots instead of the comma)
$pdf->Cell(110, 7,$address1 . ' - ' . $address2);

// I prefer this: it is easier to read
$fullAddress = $address1 . ' - ' . $address2;
$pdf->Cell(110, 7,$fullAddress);