我已经下载了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;
答案 0 :(得分:2)
您直接通过
包含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"章节。