我是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();
请帮帮我怎样才能解决这个问题.
谢谢
我认为你在pdf创建中的__construct是有问题的,试试这个
原文链接:https://www.f2er.com/php/135824.htmlrequire_once("fpdf.PHP"); class pdf extends FPDF { function __construct() { parent::FPDF(); } }