gpt4 book ai didi

php - 单元格宽度 = 文本宽度 FPDF

转载 作者:行者123 更新时间:2023-12-03 23:10:28 25 4
gpt4 key购买 nike

我制作了一个 PDF 导出器,它从模型中获取数据并通过 FPDF 库将其导出为 PDF。

$pdf = new FPDF();
$pdf->AddPage();

foreach ( $finalData AS $finalRow )
{
foreach($finalRow as $one)
{
$pdf->SetFont("Arial", "", "8");
$pdf->Cell(18, 5, $one, 1, 0, "C");
}
$pdf->Ln();
}

$pdf->Output();`

但是我有太多信息,我的信息不会从单元格边框中删除的唯一方法是使我的单元格宽度等于文本(因为在某些列中存在短文本,而在某些列中很长)。有谁知道这是怎么做的???

最佳答案

你想要 FPDF::GetStringWidth 吗?

http://www.fpdf.org/en/doc/getstringwidth.htm

关于php - 单元格宽度 = 文本宽度 FPDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28830310/

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