如何在fpdf中使数组元素变粗?

时间:2013-03-19 18:29:20

标签: php fpdf

我正在使用fpdf 我想让数组的元素看起来很粗体。

$cell3[8][0] = 'Improved Yield : Farmer Business School Training';

在分配所有这些值之后,我将在pdf文档中打印它们

$pdf->FancyTable_2c($head3,$cell3);
$pdf->Cell(8,5,'',0,1);

怎么做?

2 个答案:

答案 0 :(得分:7)

您需要设置所需的字体,然后添加单元格,然后再更改样式:

//declare a style
$pdf->SetFont('Arial', '', 10);
$pdf->Cell(20,10,"This will be regular Arial");

//declare another style, overwrites previous one
$pdf->SetFont('Arial', 'B', 10);
$pdf->Cell(20,10,"This will be Arial Bold");

//set it back to normal
$pdf->SetFont('Arial', '', 10);
$pdf->Cell(20,10,"This will be regular Arial once more")

希望有所帮助

答案 1 :(得分:1)

使用SetFontstyle参数就是您要查找的内容。