这个错误是什么意思? 我该怎么理解?
Fatal error: Declaration of Zend_Pdf_FileParserDataSource_File::__construct() must be compatible with Zend_Pdf_FileParserDataSource::__construct() in /www/htdocs/nether/http/123factuur/library/Zend/Pdf/FileParserDataSource/File.php on line 167
答案 0 :(得分:1)
基于http://www.magentocommerce.com/boards/viewthread/279601/问题是针对PHP 5.4的版本1.11.12之前的Zend。在同一篇文章中存在变通方法:
制作lib / Zend / Pdf / FileParserDataSource.php文件的副本。接下来,将副本移动到app / code / local / Zend / Pdf / FileParserDataSource.php
更改
abstract public function __construct();
要
abstract public function __construct($filePath);