即使我的系统仍然正常运行,我的错误日志也突然充满了如下错误:
2012-07-20T02:53:25+00:00 WARN (4): [2048] Declaration of User_Model_User::getParent() should be compatible with Core_Model_Item_Abstract::getParent($recurseType = NULL) ([…]/application/modules/User/Model/User.php) [20]
Error Code: 1b29e1
Stack trace:
#0 […]/application/libraries/Engine/Loader.php(103): include_once('/dana/data/www.altandetlige.dk/d...')
#1 (unknown file)(0): Engine_Loader::autoload('User_Model_User')
#2 (unknown file)(0): spl_autoload_call('User_Model_User')
#3 […]/application/libraries/Zend/Db/Table/Rowset/Abstract.php(114): class_exists('User_Model_User')
#4 […]/application/libraries/Zend/Db/Table/Abstract.php(1340): Zend_Db_Table_Rowset_Abstract->__construct(Array)
#5 […]/application/libraries/Zend/Db/Table/Abstract.php(1290): Zend_Db_Table_Abstract->fetchAll('((`engine4_users`.`user_id` = 1)...')
#6 […]/application/modules/User/Api/Core.php(334): Zend_Db_Table_Abstract->find(1)
#7 […]/application/modules/User/Api/Core.php(167): User_Api_Core->_getUser(1)
#8 […]/application/modules/User/Bootstrap.php(34): User_Api_Core->getViewer()
#9 […]/application/modules/Core/Bootstrap.php(783): User_Bootstrap->__construct(Core_Bootstrap)
#10 […]/application/libraries/Engine/Application/Bootstrap/Abstract.php(256): Core_Bootstrap->_initModules()
#11 […]/application/libraries/Engine/Application/Bootstrap/Abstract.php(207): Engine_Application_Bootstrap_Abstract->_executeResource('modules')
#12 […]/application/libraries/Engine/Application/Bootstrap/Abstract.php(150): Engine_Application_Bootstrap_Abstract->_bootstrap()
#13 […]/application/libraries/Engine/Application.php(149): Engine_Application_Bootstrap_Abstract->bootstrap()
#14 […]/application/index.php(193): Engine_Application->bootstrap()
#15 […]/index.php(24): include('/dana/data/www.altandetlige.dk/d...')
#16 {main}
所有使用 Core_Model_Item_Abstract 的模型都会产生完全相同的错误。
奇怪的是,该错误仅显示在生产服务器(运行 PHP 5.4.3)上,而不显示在开发设置上(运行 PHP 5.2.11)。
从错误中可以清楚地看出 Core_Model_Item_Abstract 似乎没有获得预期的参数,但没有对 Core_Model_Item_Abstract 进行任何更改,如果是这种情况,它将在生产和开发中正确显示。
[编辑]
中的父类Core_Model_Item_Abstract
看起来像这样。对我来说,代码似乎已经考虑了$recurseType
未设置的内容:
public function getParent($recurseType = null) {
if( empty($recurseType) ) $recurseType = null; // Parent and owner are same
if( !empty($this->_parent_is_owner) ) {
return $this->getOwner($recurseType);
}
}
有人对此有任何想法吗?