Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16480 программистов и 1785 роботов. Сейчас ищет 1371 программист ...
TokyoTyrant::putShl - Concatenates to a record
Вернуться к: TokyoTyrant
TokyoTyrant::putShl
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::putShl — Concatenates to a record
Описание
Concatenate to a record and shift to left.
Список параметров
-
key
-
A string key
-
value
-
The value to concatenate
-
width
-
The width of the record
Возвращаемые значения
This method returns a reference to the current object and throws TokyoTyrantException on failure.
Примеры
Пример #1 TokyoTyrant::putShl() example
<?php
/* Connect to a database on default port */
$tt = new TokyoTyrant("localhost");
/* Create a new key */
$tt->put("key", "just a long piece of data");
/* Concatenate and shift to left */
$tt->putShl("key", " and string", 15);
/* Echo the key */
echo $tt->get("key");
?>
Результат выполнения данного примера:
data and string
Смотрите также
- TokyoTyrant::put() - Puts values
- TokyoTyrant::putKeep() - Puts a record
- TokyoTyrant::putCat() - Concatenates to a record
Вернуться к: TokyoTyrant