wincache_ucache_cas
(PECL wincache >= 1.1.0)
wincache_ucache_cas — Compares the variable with old value and assigns new value to it
Описание
$key
, int $old_value
, int $new_value
)
Compares the variable associated with the key
with old_value
and if it matches then assigns the new_value
to it.
Список параметров
-
key
-
The
key
that is used to store the variable in the cache.key
is case sensitive. -
old_value
-
Old value of the variable pointed by
key
in the user cache. The value should be of type long, otherwise the function returnsFALSE
. -
new_value
-
New value which will get assigned to variable pointer by
key
if a match is found. The value should be of type long, otherwise the function returnsFALSE
.
Возвращаемые значения
Возвращает TRUE
в случае успешного завершения или FALSE
в случае возникновения ошибки.
Примеры
Пример #1 Using wincache_ucache_cas()
<?php
wincache_ucache_set('counter', 2922);
var_dump(wincache_ucache_cas('counter', 2922, 1));
var_dump(wincache_ucache_get('counter'));
?>
Результат выполнения данного примера:
bool(true) int(1)
Смотрите также
- wincache_ucache_inc() - Increments the value associated with the key
- wincache_ucache_dec() - Decrements the value associated with the key
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Изменение поведения PHP
- Windows Cache for PHP
- wincache_fcache_fileinfo
- wincache_fcache_meminfo
- wincache_lock
- wincache_ocache_fileinfo
- wincache_ocache_meminfo
- wincache_refresh_if_changed
- wincache_rplist_fileinfo
- wincache_rplist_meminfo
- wincache_scache_info
- wincache_scache_meminfo
- wincache_ucache_add
- wincache_ucache_cas
- wincache_ucache_clear
- wincache_ucache_dec
- wincache_ucache_delete
- wincache_ucache_exists
- wincache_ucache_get
- wincache_ucache_inc
- wincache_ucache_info
- wincache_ucache_meminfo
- wincache_ucache_set
- wincache_unlock
Коментарии
404 Not Found