-1
 public function offsetExists($index)
    {
        return array_key_exists($index, $this);
    }

这取自 Zend/Registry.php,我的问题是: $this是当前对象,对吗?但这里似乎也是一个数组?那么 $this这里的实际含义是什么?

4

1 回答 1

0

你会注意到Zend_Registryextends ArrayObject。这允许它数组一样使用。

进一步阅读 - http://php.net/manual/en/class.arrayobject.php

Zend_Registry覆盖的原因ArrayObject::offsetExists()是由于这个错误 - https://bugs.php.net/bug.php?id=40442

于 2013-04-18T01:38:14.213 回答