gpt4 book ai didi

php - 找不到类 'Mpdf\Mpdf'

转载 作者:行者123 更新时间:2023-12-04 15:38:54 26 4
gpt4 key购买 nike

我使用的是带有 yii2 的 mpdf 8.1,用于 pdf 报告下载的 php 版本是 5.6.40。它在本地环境中运行良好。但是在具有相同 php 版本的实时服务器中找不到类 mpdf。

mpdf库上传到vendor目录,路径为vendor/mpdf/mpdf。我正在使用这些,

use Mpdf\Mpdf;
class ReportController extends Controller
{
public function actionPdfUsageReport()
{
$content = "<div>Hello</div>";
$marginValue = PdfSettings::GetTabularReportMarginSetting();
$pdf = new Mpdf($marginValue);
$stylesheet = file_get_contents(Yii::getAlias('@webroot') . "/css/mpdfstyletables.css");
$pdf->WriteHTML($stylesheet, 1);
$pdf->SetProtection(array('print'));
$pdf->SetTitle("Title");
$pdf->SetAuthor("Author.");
$pdf->SetDisplayMode('fullpage');
$pdf->WriteHTML($content);
return $pdf->Output('Usage Summary.pdf', 'I');
}
}

系统信息Apache/2.4.6 (Red Hat Enterprise Linux) OpenSSL/1.0.2k-fips PHP/5.6.40

最佳答案

mpdf 库是手动上传的,所以我清理了它并通过 composer 重新安装了 mpdf 库。现在工作正常。感谢@MuhammadOmerAslam

关于php - 找不到类 'Mpdf\Mpdf',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58727426/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com