编程语言
首页 > 编程语言> > php-fpdf:标头在fpdf中不起作用

php-fpdf:标头在fpdf中不起作用

作者:互联网

我已经使用了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();

标签:fpdf,php
来源: https://codeday.me/bug/20191027/1942026.html