Php 一行并行文本中的FPDF多单元函数

Php 一行并行文本中的FPDF多单元函数,php,html,fpdf,Php,Html,Fpdf,如何使用multicell并将所有数据保留在同一行中?多小区后的数据如下 $pdf->Cell(19 ,5,$billing['sn'],'L,R',0,'C'); $pdf->MultiCell(75 ,5,$billing['description'],'L,R',0,'C'); $pdf->Cell(20 ,5,$billing['qty'],'L,R',0,'C'); $pdf->Cell(26 ,5,$billing['price'],'L,R',

如何使用
multicell
并将所有数据保留在同一行中?
多小区后的数据如下

$pdf->Cell(19   ,5,$billing['sn'],'L,R',0,'C');
$pdf->MultiCell(75  ,5,$billing['description'],'L,R',0,'C');
$pdf->Cell(20   ,5,$billing['qty'],'L,R',0,'C');
$pdf->Cell(26   ,5,$billing['price'],'L,R',0,'C');
$pdf->Cell(50   ,5,$billing['item_total'],'L,R',1,'C');//end of line

“同一排”是什么意思?你能提供一个它应该是什么样子的草图吗?脚本可以帮助。我刚刚更新了我的问题。请参见上面的输出。