Memory object container access controller.

Memory manager stores a list of generated objects to control them. So container objects always have at least one reference and can't be automatically destroyed.

This class is intended to be an userland proxy to memory container object. It's not referenced by memory manager and class destructor is invoked immediately after going out of scope or unset operation.

Class also provides Zend\Memory\Container interface and works as proxy for such cases.

 Methods

Object constructor

__construct(\Zend\Memory\Container\Movable $memContainer) 

Parameters

Object destructor

__destruct() 

Get handler

__get(string $property) : string

Loads object if necessary and moves it to the top of loaded objects list. Swaps objects from the bottom of loaded objects list, if necessary.

Parameters

$property

string

Returns

string

Set handler

__set(string $property, string $value) 

Parameters

$property

string

$value

string

Get string value reference

getRef() : \Zend\Memory\Container\string

Must be used for value access before PHP v 5.2 or may be used for performance considerations

Returns

\Zend\Memory\Container\string

Return true if object is locked

isLocked() : bool

Returns

bool

Lock object in memory.

lock() 

Signal, that value is updated by external code.

touch() 

Should be used together with getRef()

Unlock object

unlock() 

 Properties

 

Memory container object

$memContainer : \Zend\Memory\Container\Movable