在我的项目中使用fpdf for PHP将打印发票中的数据包装到Pdf单元格中

时间:2014-02-20 08:25:10

标签: php pdf fpdf

when i enter more data its overflow from the cell

当我使用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');

1 个答案:

答案 0 :(得分:0)

您可以使用MultiCell功能,它允许打印多行。

$pdf->MultiCell( 40, 20, $text, 1);

文档在这里: http://www.fpdf.org/en/doc/multicell.htm

否则,如果你想使用Cell。我建议你自己包装文本。

此示例代码可在此处找到: column text wrap using fpdf