阵列FPDF中的多单元

时间:2013-09-06 00:08:43

标签: php fpdf

嗨,先生,我需要帮助,了解如何使用multicell将数组内的数据放入textWrap中

这是我的代码

        foreach($data as $row){ //CGANHE THIS ACCORDING TO HEADER

            $this->Cell($w[0],4,$row[0],'LR',0,'C',$fill);
            $this->SetFont('');

            $this->Cell($w[1],4,$row[1],'LR',0,'C',$fill);
            $this->SetFont('');

            $this->Cell($w[2],4,$row[2],'LR',0,'R',$fill);
            $this->SetFont('');

            $this->Cell($w[3],4,$row[3],'LR',0,'R',$fill);
            $this->SetFont('');

            $this->Cell($w[4],4,$row[4],'LR',0,'R',$fill);
            $this->SetFont('');

            $this->Ln();
            $fill =! $fill;
        }

      $this->Cell(array_sum($w),0,'','T');


      $this->Ln(50);
      $this->Ln(50);

    }

}

非常需要帮助Tnx 这真的让我疯了,所以如果有人有任何想法,我会非常感激。

1 个答案:

答案 0 :(得分:0)

您想要包装的每个单元格都必须是MultiCell:

例如:

$this->MultiCell($w[0],4,$row[0],'LR',0,'C',$fill);

如果到达右边的单元格边框,文本将自动换行。

另请参阅:FPDF-documentation for MultiCell