我是Fpdf库的新手,我需要在smarty中从数据库创建一个pdf。我已检查数据库中的数据是否正常,当传递字体名称时,显示以下错误
Warning: in_array() expects parameter 2 to be array, null given in /var/www/html/irmt/library/class/fpdf/fpdf.php on line 526
<b>FPDF error:</b> Undefined font: helvetica B
我的代码是
$pdf->AddPage();
$pdf->SetFont('Arial','B',14);
$pdf->FancyTable($result);
$pdf->Output();
请帮助我如何解决这个问题。 谢谢adv
答案 0 :(得分:3)
这是因为您调用了fpdf库的构造函数,将fpdf库函数(参数)更改为__ construct(参数),然后将其从您的文件中传播。 例如:file:genpdf.php
<?php
include('fpdf.php');
class Genpdf extends Fpdf{
public function __construct()
{
parent::__construct();
}
public function build()
{
$this->AddPage();
$this->SetFont('Arial','B',16);
$this->Cell(40,10,'¡Hola, Mundo!');
$this->Output();
}
}
答案 1 :(得分:1)
尝试删除行$ pdf-&gt; FancyTable($ rs);并检查您是否收到PDF。