Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16377 программистов и 1783 робота. Сейчас ищут 2068 программистов ...
TokyoTyrant::put - Puts values
Вернуться к: TokyoTyrant
TokyoTyrant::put
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::put — Puts values
Описание
Puts a key-value pair into the database or multiple key-value pairs. If keys
is
string then the second parameter value defines the value.
The second parameter is mandatory if keys
is a string. If the key exists the value
will be replaced with new value.
Список параметров
-
keys
-
A string key or an array of key-value pairs
-
value
-
The value in case a string key is used
Возвращаемые значения
This method returns a reference to the current object and throws TokyoTyrantException on failure.
Примеры
Пример #1 TokyoTyrant::put() example
<?php
/* Connect to a database on default port */
$tt = new TokyoTyrant("localhost");
/* Put single key-value pair */
$tt->put("key", "value");
/* Put key-value pairs, new value overwrites the old */
$tt->put(array("key1" => "value1", "key" => "value2"));
/* Get back one key */
echo $tt->get("key");
?>
Результат выполнения данного примера:
value2
Смотрите также
- TokyoTyrant::putKeep() - Puts a record
- TokyoTyrant::putCat() - Concatenates to a record
Вернуться к: TokyoTyrant