mpdf 不工作 [致命错误:未找到特征'Mpdf\Strict']
Posted
技术标签:
【中文标题】mpdf 不工作 [致命错误:未找到特征\'Mpdf\\Strict\']【英文标题】:mpdf not working [Fatal error: Trait 'Mpdf\Strict' not found]mpdf 不工作 [致命错误:未找到特征'Mpdf\Strict'] 【发布时间】:2019-05-13 08:59:41 【问题描述】:我已经下载了 mpdf 的更新版本并将其与 php 一起使用。它给了我以下错误。
“致命错误:特征 'Mpdf\Strict' 未在 E:\xampp\htdocs\PDF\mpdf\Mpdf.php 在第 39 行"。
$html = '<h2>mpdf test.</h2>';
include("mpdf/mpdf.php");
$mpdf = new mPDF('c','A4','','',32,25,27,25,16,13);
$mpdf->SetDisplayMode('fullpage');
$mpdf->list_indent_first_level = 0; // 1 or 0 - whether to indent the first
level of a list
// LOAD a stylesheet
$stylesheet = file_get_contents('mpdfstyletables.css');
$mpdf->WriteHTML($stylesheet,1); // The parameter 1 tells that this is css/style only and no body/html/text
$mpdf->WriteHTML($html,2);
$mpdf->Output('mpdf.pdf','I');
exit;
【问题讨论】:
该文件是否存在于该位置?也将 include 更改为 require_once 是的,文件存在 【参考方案1】:您是通过
直接包含 mpdfinclude("mpdf/mpdf.php");
这将只包括核心文件,但不包括 mPDF 在生成过程中可能需要的任何其他文件。正确的方法是使用:
// Require composer autoload
require_once __DIR__ . '/vendor/autoload.php';
// Create an instance of the class:
$mpdf = new \Mpdf\Mpdf();
这将确保所需的类在被引用后立即自动加载。
有关更多信息,请查看 mPDF 网页上的 "Getting started" 章节。
【讨论】:
以上是关于mpdf 不工作 [致命错误:未找到特征'Mpdf\Strict']的主要内容,如果未能解决你的问题,请参考以下文章