0

我的 Apache 日志中有一个奇怪的错误:

PHP致命错误:未定义的类常量''

这是 de library (Zend framework 1.11) library/Zend/Db/Select.php 的第 814 行

看一下代码:

if ($type == self::FROM) {
// append this from after the last from joinType
$tmpFromParts = $this->_parts[self::FROM];
$this->_parts[self::FROM] = array();
// move all the froms onto the stack
while ($tmpFromParts) {
$currentCorrelationName = key($tmpFromParts);
if ($tmpFromParts[$currentCorrelationName]['joinType'] != self::FROM) {
break;
}
$lastFromCorrelationName = $currentCorrelationName;
$this->_parts[self::FROM][$currentCorrelationName] = array_shift($tmpFromParts);
} }

这很奇怪,因为未定义的常量是空的。这个致命错误有时会出现,但不是在每次加载页面时都会出现。难道是zend框架的发布BUG?

4

0 回答 0