Hea*_*Vay 8 php pdf-generation fpdf tcpdf
如何使用PHP使用FPDF创建这样的表?
我似乎无法弄清楚如何做到这一点$this->Cell.

Sea*_*ean 15
FPDF无法识别rowspan或colspan.这是一个可以尝试的解决方法,使用空单元格和border属性Cell.
$pdf->Cell(40,5,' ','LTR',0,'L',0); // empty cell with left,top, and right borders
$pdf->Cell(50,5,'Words Here',1,0,'L',0);
$pdf->Cell(50,5,'Words Here',1,0,'L',0);
$pdf->Cell(40,5,'Words Here','LR',1,'C',0); // cell with left and right borders
$pdf->Cell(50,5,'[ x ] abc',1,0,'L',0);
$pdf->Cell(50,5,'[ x ] checkbox1',1,0,'L',0);
$pdf->Cell(40,5,'','LBR',1,'L',0); // empty cell with left,bottom, and right borders
$pdf->Cell(50,5,'[ x ] def',1,0,'L',0);
$pdf->Cell(50,5,'[ x ] checkbox2',1,0,'L',0);
Run Code Online (Sandbox Code Playgroud)
结果将是 -

小智 5
我想我找到了其他解决方案,这是我的解决方案,不需要空单元格。
$pdf->Cell(40,18,'Words Here', 1,0, 'C');
$x = $pdf->GetX();
$pdf->Cell(40,6,'Words Here', 1,0);
$pdf->Cell(40,6,'Words Here', 1,1);
$pdf->SetX($x);
$pdf->Cell(40,6,'[x] abc', 1,0);
$pdf->Cell(40,6,'[x] Checkbox 1', 1,1);
$pdf->SetX($x);
$pdf->Cell(40,6,'[x] def', 1,0);
$pdf->Cell(40,6,'[x] Checkbox 1', 1,1);
Run Code Online (Sandbox Code Playgroud)
这是结果:
| 归档时间: |
|
| 查看次数: |
39616 次 |
| 最近记录: |