gpt4 book ai didi

php - fpdf: header 在 fpdf 中不起作用

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

我使用了 fpdf 库并根据 fpdf 的官方文档使用它。

我想在我的文件中使用标题但不能使用它,下面是我的代码。请纠正我的错误,为什么标题没有出现..

这是我的代码:

<?php

require('fpdf/fpdf.php');

class PDF extends FPDF
{
function Header()
{
// Select Arial bold 15
$this->SetFont('Arial','B',5);
// Move to the right
$this->Cell(80,'ddd');
// Framed title
$this->Cell(30,10,'Title',1,0,'C');
$this->Cell(20,10,'Title',1,1,'C');
// Line break
$this->Ln(20);
}
}

$pdf=new FPDF();

$pdf->AddPage();
$pdf->SetFont('Times','B',14);

$pdf->Cell(20,10,'Title',1,1,'C');
$pdf->Output();
?>

最佳答案

根据 PetrHejda 的评论,您需要做的就是改变

$pdf=new FPDF();

$pdf=new PDF();

关于php - fpdf: header 在 fpdf 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36682212/

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