如何使表使用FPDF

时间:2012-10-09 08:10:32

标签: php html fpdf

我正在尝试使用fpdf将表格插入PDF文档,我想要实现的输出是: -

enter image description here

这是我到目前为止的代码: -

$pdf->Cell(10,5,'No',1,0,'C',0);
$pdf->Cell(50,5,'Name',1,0,'C',0);
$pdf->Cell(90,5,'Hobby',1,1,'C',0);
$pdf->Cell(10,5,'',1,0,'C',0);
$pdf->Cell(50,5,'',1,0,'C',0);
$pdf->Cell(30,5,'Hobby A',1,0,'C',0);
$pdf->Cell(30,5,'Hobby B',1,0,'C',0);
$pdf->Cell(30,5,'Hobby B',1,1,'C',0);

但它提供了以下输出: -

enter image description here

如何获得所需的输出?

0 个答案:

没有答案