我有一个使用FPDF创建的表。我的问题是如何为特定文本添加下划线?
例如,
姓名|性别|年龄
贵妇人女| 20
我想要"姓名,性别&年龄"加下划线
这是我目前的代码
$p->Cell(20,5,'Name','LTR',0,'C',0);
$p->Cell(40,5,'Gender','TR',0,'C',0);
$p->Cell(40,5,'Age','TR',0,'C',0);
while(retrieve from DB)
提前致谢
答案 0 :(得分:0)
使用SetFont
作为下划线。您可以将字体系列留空以使其保持不变。
$p->SetFont('','U');
$p->Cell(20,5,'Name','LTR',0,'C',0);