dongliao1948 2017-10-26 18:12
浏览 570
已采纳

试图通过composer包含setasign / fpdf

I'm trying to include fpdf and fpdi via installing setasign/fpdi-fpdf through composer but I can't seem to get fpdf or fpdi loaded. The error I get is Class 'setasign\fpdf\FPDF' not found.

use \setasign\fpdf\FPDF as FPDF;

//inside controller function
fpdf::AddPage();
fpdf::SetFont('Courier', 'B', 18);
fpdf::Cell(50, 25, 'Hello World!');
fpdf::Output();

Maybe I should be adding something to the config/app.php file in order to load the classes?

  • 写回答

1条回答 默认 最新

  • donglu4633 2017-10-27 06:36
    关注

    FPDF is not namespaced. The package is a clone of the original release with an additional composer.json file. Nothing more.

    Just use \FPDF if you want to use the FPDF class.

    The latest FPDI release is namespaced: \setasign\Fpdi\Fpdi

    Additionally you should/cannot call the methods static.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?