嗨,先生,我需要帮助,了解如何使用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 这真的让我疯了,所以如果有人有任何想法,我会非常感激。
答案 0 :(得分:0)
您想要包装的每个单元格都必须是MultiCell:
例如:
$this->MultiCell($w[0],4,$row[0],'LR',0,'C',$fill);
如果到达右边的单元格边框,文本将自动换行。