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