如何将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
那么,如何在不遵循订单的情况下设置哪个Cell将首先/发送到后面?