|
Memcached::prepend(PECL memcached >= 0.1.0) Memcached::prepend — Prepend data to an existing item Описание
public bool Memcached::prepend
( string $key
, string $value
)
Memcached::prepend() prepends the given value string to the value of an existing item. The reason that value is forced to be a string is that prepending mixed types is not well-defined.
Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. The Memcached::getResultCode() will return Memcached::RES_NOTSTORED if the key does not exist. Примеры
Пример #1 Memcached::prepend() example
<?php Результат выполнения данного примера: string(6) "defabc" Смотрите также
|
|