Php 理解致命错误:声明

Php 理解致命错误:声明,php,zend-framework,Php,Zend Framework,这个错误意味着什么? 我该怎么理解呢 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

这个错误意味着什么? 我该怎么理解呢

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 
基于这个问题,Zend在PHP5.4版本1.11.12之前的版本。在同一篇文章中,存在以下变通方法:

制作lib/Zend/Pdf/FileParserDataSource.php文件的副本。接下来,将副本移动到app/code/local/Zend/Pdf/FileParserDataSource.php

改变

abstract public function __construct();

可能重复的
abstract public function __construct($filePath);