메소드 |
설명 |
|
__construct ( array $array = [], integer $flags = parent::ARRAY_AS_PROPS ) |
Constructs a parent ArrayObject with default
ARRAY_AS_PROPS to allow acces as an object |
|
get ( string $index ) : mixed |
getter method, basically same as offsetGet(). |
|
getInstance ( ) : Registry |
Retrieves the default registry instance. |
|
isRegistered ( string $index ) : boolean |
Returns true if the $index is a named value in the registry,
or false if $index was not found in the registry. |
|
offsetExists ( string $index ) : boolean |
Returns true if the $index is a named value in the registry,
or false if $index was not found in the registry. |
|
set ( string $index, mixed $value ) : void |
setter method, basically same as offsetSet(). |
|
setInstance ( Registry $registry ) : void |
Set the default registry instance to a specified instance. |
|
unsetInstance ( ) : void |
Unset the default registry instance. |
|