gpt4 book ai didi

php - 如何在 fpdf 中使数组的元素变为粗体?

转载 作者:可可西里 更新时间:2023-11-01 00:14:56 25 4
gpt4 key购买 nike

我正在使用 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")

希望对你有帮助

关于php - 如何在 fpdf 中使数组的元素变为粗体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15507628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com