Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16411 программистов и 1784 робота. Сейчас ищут 2094 программиста ...
TokyoTyrant::add - Adds to a numeric key
Вернуться к: TokyoTyrant
TokyoTyrant::add
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::add — Adds to a numeric key
Описание
Adds to an int or double value. This increments the value by the given amount and returns the new value. If the key does not exist a new key is created with initial value of the increment parameter.
Список параметров
-
key
-
The string key
-
increment
-
The amount to increment
-
type
-
TokyoTyrant::RDBREC_INT
orTokyoTyrant::RDBREC_DBL
constant. If this parameter is omitted the type is guessed from theincrement
parameters type.
Возвращаемые значения
Returns the new value on success
Примеры
Пример #1 TokyoTyrant::add() example
<?php
$tt = new TokyoTyrant("localhost", TokyoTyrant::RDBDEF_PORT);
/* Adds integer 3 to key and creates a new key */
$tt->add("test", 3);
/* String value is converted to double */
echo $tt->add("test", "3.5", TokyoTyrant::RDBREC_DBL);
?>
Результатом выполнения данного примера будет что-то подобное:
6.5
Смотрите также
- TokyoTyrant::put() - Puts values
- TokyoTyrant::putcat() - Concatenates to a record
- TokyoTyrant::putkeep() - Puts a record
Вернуться к: TokyoTyrant