wincache_ucache_cas

(PECL wincache >= 1.1.0)

wincache_ucache_cas Compares the variable with old value and assigns new value to it

说明

wincache_ucache_cas ( string $key , int $old_value , int $new_value ) : bool

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 returns FALSE.

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 returns FALSE.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

范例

Example #1 Using wincache_ucache_cas()

<?php
wincache_ucache_set
('counter'2922);
var_dump(wincache_ucache_cas('counter'29221));
var_dump(wincache_ucache_get('counter'));
?>

以上例程会输出:

bool(true) 
int(1)

参见

相关文章
php apcu 函数 cache a new variable in the data storephp apcu 函数 updates an old value with a new valuephp variable handling 函数 dumps a string representation of an internal zend value to outputphp firebird/interbase 函数 increments the named generator and returns its new valuephp imap 函数 rename an old mailbox to new mailboxphp variable handling 函数 verify that the contents of a variable is a countable valuephp variable handling 函数 verify that the contents of a variable is an iterable valuephp 函数 returns the legacy extended json representation of a bson valuephp ncurses 函数 set new position and draw a horizontal line using an attributed character and max. n characters longphp ncurses 函数 create a new panel and associate it with windowphp com 函数 assigns a new value for a variant objectphp wddx 函数 starts a new wddx packet with structure inside itphp wincache 函数 adds a variable in user cache only if variable does not already exist in the cachephp wincache 函数 compares the variable with old value and assigns new value to itphp wincache 函数 decrements the value associated with the keyphp wincache 函数 checks if a variable exists in the user cachephp wincache 函数 gets a variable stored in the user cachephp wincache 函数 increments the value associated with the keyphp wincache 函数 adds a variable in user cache and overwrites a variable if it already exists in the cachephp sdo 函数 get the old value for the changed property
关注编程学问公众号