配列の要素を太字にしたい fpdf を使用しています。
$cell3[8][0] = 'Improved Yield : Farmer Business School Training';
これらすべての値を割り当てた後、それらをpdfドキュメントに印刷します
$pdf->FancyTable_2c($head3,$cell3);
$pdf->Cell(8,5,'',0,1);
これを行う方法?
必要なフォントを設定し、セルを追加してからスタイルを元に戻す必要があります。
//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")
それが役に立てば幸い
を使用しSetFont
ます。パラメータはstyle
あなたが探しているものです。