私は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();
どうすればこの問題を解決できるか教えてください。ありがとうございます