|
Memcached::set(PECL memcached >= 0.1.0) Memcached::set — Store an item ОписаниеMemcached::set() stores the value on a memcache server under the specified key. The expiration parameter can be used to control when the value is considered expired. The value can be any valid PHP type except for resources, because those cannot be represented in a serialized form. If the Memcached::OPT_COMPRESSION option is turned on, the serialized value will also be compressed before storage. Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. Используйте при необходимости Memcached::getResultCode(). Примеры
Пример #1 Memcached::set() example
<?php Результатом выполнения данного примера будет что-то подобное: int(99) string(15) "a simple string" array(2) { [0]=> int(11) [1]=> int(12) } object(stdClass)#1 (0) { } Смотрите также
|
|