我在yii2应用程序中尝试使用Dompdf,但是它向我显示了一条错误消息。
PHP致命错误 - yii \ base \ ErrorException类
' DOMPDF \ FrameDecorator \页'找不到
我并不理解这个原因。
答案 0 :(得分:1)
您应该运行此命令将此扩展名添加到composer.json。
composer require dompdf/dompdf
或者在composer.json要求部分添加此行并运行composer update
:
"require": {
"dompdf/dompdf": "^0.7.0"
},
然后在您的视图中以这种方式访问。
// reference the Dompdf namespace
use Dompdf\Dompdf;
// instantiate and use the dompdf class
$dompdf = new Dompdf();
$dompdf->loadHtml('hello world');
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'landscape');
// Render the HTML as PDF
$dompdf->render();
// Output the generated PDF to Browser
$dompdf->stream();