这是我的代码。请帮助。
foreach ($data as $row)
{
$i = 0;
foreach ($row as $field) {
$this->MultiCell($header[$i][1], 6, $field, 1,0, 'L', true);
$i++;
}
$this->Ln();
}
它向下显示数据。
答案 0 :(得分:0)
试试这个: -
$current_y = $this->GetY();
$current_x = $this->GetX();
$this->MultiCell($header[$i][1],5,$field,1,'T', false,'T');
$this->SetXY($current_x + $header[$i][1], $current_y);
希望这会很好。