0

致命错误: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 中的参数匹配吗?谢谢!

4

0 回答 0