如何相邻打印Fpdf MultiCell

时间:2016-01-10 09:25:53

标签: javascript php mysql fpdf

这是我的代码。请帮助。

    foreach ($data as $row)
    {
        $i = 0;
        foreach ($row as $field) {

            $this->MultiCell($header[$i][1], 6, $field, 1,0,  'L', true);
            $i++;

        }
        $this->Ln();
    }

它向下显示数据。

1 个答案:

答案 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);

希望这会很好。