当我使用fpdf函数添加更多数据时,我想将数据包装在一个单元格中 使用php
$pdf->Cell(40,10,"".$row['asdsa'],1,1,"l");
$pdf->SetXY(111,50);
$pdf->Cell(40,10,"invoice no :",1,0,"l");
$pdf->Cell(40, 20, 'asdasdasdas dsadsad', 1, 1, 'L');
答案 0 :(得分:0)
您可以使用MultiCell功能,它允许打印多行。
$pdf->MultiCell( 40, 20, $text, 1);
文档在这里: http://www.fpdf.org/en/doc/multicell.htm
否则,如果你想使用Cell。我建议你自己包装文本。
此示例代码可在此处找到: column text wrap using fpdf