PHP Класс Phergie_Plugin_Cache, phergie

Автор: Phergie Development Team ([email protected])
Наследование: extends Phergie_Plugin_Abstract
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$cache array Key-value data storage for the cache

Открытые методы

Метод Описание
expire ( string $key ) : boolean Expires a value that has exceeded its time to live.
fetch ( string $key ) : mixed Fetches a previously stored value.
store ( string $key, mixed $data, integer | null $ttl = 3600, boolean $overwrite = true ) : boolean Stores a value in the cache.

Описание методов

expire() публичный Метод

Expires a value that has exceeded its time to live.
public expire ( string $key ) : boolean
$key string Key associated with the value to expire
Результат boolean

fetch() публичный Метод

Fetches a previously stored value.
public fetch ( string $key ) : mixed
$key string Key associated with the value
Результат mixed Stored value or FALSE if no value or an expired value is associated with the specified key

store() публичный Метод

Stores a value in the cache.
public store ( string $key, mixed $data, integer | null $ttl = 3600, boolean $overwrite = true ) : boolean
$key string Key to associate with the value
$data mixed Data to be stored
$ttl integer | null Time to live in seconds or NULL for forever
$overwrite boolean TRUE to overwrite any existing value associated with the specified key
Результат boolean

Описание свойств

$cache защищенное свойство

Key-value data storage for the cache
protected array $cache
Результат array