致命的なエラー: Cached_PDF_Decorator::_ construct() の宣言は、22 行目の /my/path/to/cached_pdf_decorator.cls.php の Canvas:: _construct()の宣言と互換性がある必要があります
Cached_PDF_Decorator の関連コード:
class Cached_PDF_Decorator extends CPDF_Adapter implements Canvas {
...
function __construct($cache_id, CPDF_Adapter $pdf) {
$this->_pdf = $pdf;
$this->_cache_id = $cache_id;
$this->_fonts = array();
$this->_current_page_id = $this->_pdf->open_object();
}
インターフェイス Canvas の関連コード:
interface Canvas {
function __construct($paper = "letter", $orientation = "portrait", DOMPDF $dompdf);
Cached_PDF_Decorator の __construct のパラメーターは、Canvas のパラメーターと一致するべきではありませんか? ありがとう!