2014-04-09 75 views
0

這個錯誤是什麼意思? 我應該如何理解它?瞭解致命錯誤:聲明

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

[致命錯誤的可能重複:宣言..絕與...兼容(http://stackoverflow.com/questions/11273313/fatal-error-declaration-of-must-be-compatible-with-php) – Yoshi

回答

1

根據http://www.magentocommerce.com/boards/viewthread/279601/,Zend在版本1.11.12之前針對PHP 5.4。在同一篇文章中有以下解決方法:

複製lib/Zend/Pdf/FileParserDataSource.php文件。接下來,將副本的應用程序/代碼/本地/的Zend/PDF/FileParserDataSource.php

變化

abstract public function __construct(); 

abstract public function __construct($filePath); 
相關問題