Метод |
Описание |
|
__clone ( ) |
Prevent cloning of the object (Singleton) |
|
__get ( string $strKey ) : mixed | null |
Return a cache entry |
|
__isset ( string $strKey ) : boolean |
Check whether a key is set |
|
__set ( string $strKey, mixed $varValue ) |
Add a cache entry |
|
__unset ( string $strKey ) |
Remove a cache entry |
|
get ( string $strKey ) : mixed |
Return a cache entry |
|
getInstance ( ) : Cache |
Instantiate the cache object (Factory) |
|
has ( string $strKey ) : boolean |
Check whether a key is set |
|
remove ( string $strKey ) |
Remove a cache entry |
|
set ( string $strKey, mixed $varValue ) |
Add a cache entry |
|