|
wincache_ucache_cas(PECL wincache >= 1.1.0) wincache_ucache_cas — Compares the variable with old value and assigns new value to it Описание
bool wincache_ucache_cas
( string $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. Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. Примеры
Пример #1 Using wincache_ucache_cas()
<?php Результат выполнения данного примера: bool(true) int(1) Смотрите также
|
|