public function offsetExists($index)
{
return array_key_exists($index, $this);
}
这取自Zend / Registry.php,我的问题是:
$this
是当前对象,对吗?但这里似乎也是一个阵列?那么$this
在这里究竟是什么意思呢?
答案 0 :(得分:0)
您会注意到Zend_Registry
延伸ArrayObject
。这允许它像一样使用一个数组。
进一步阅读 - http://php.net/manual/en/class.arrayobject.php
Zend_Registry
覆盖ArrayObject::offsetExists()
的原因是由于此错误导致的问题 - https://bugs.php.net/bug.php?id=40442