Php Fpdf发送回单元的变更单

Php Fpdf发送回单元的变更单,php,fpdf,Php,Fpdf,如何将cell()发送到后面,因为它当前根据代码中的顺序显示为pdf。这就是一个例子 $pdf->SetXY(10, 20); $pdf->SetFillColor(240); $pdf->Cell(10, 10, '', 0, 1, 'L', true); // Show up 1st: Cell 1 $pdf->SetXY(10, 20); $pdf-> SetFillColor(100); $pdf->Cell(10, 10, '', 0, 1, 'L

如何将cell()发送到后面,因为它当前根据代码中的顺序显示为pdf。这就是一个例子

$pdf->SetXY(10, 20);
$pdf->SetFillColor(240);
$pdf->Cell(10, 10, '', 0, 1, 'L', true); // Show up 1st: Cell 1

$pdf->SetXY(10, 20);
$pdf-> SetFillColor(100);
$pdf->Cell(10, 10, '', 0, 1, 'L', true); // Show up 2nd: Cell 2
那么,我如何设置哪个单元格将首先出现/发送到后面而不遵循顺序