wincache_ucache_cas
(PECL wincache >= 1.1.0)
Compares the variable with old value and assigns new value to it
Description
Compares the variable associated with the key with old_value and if it matches then assigns the new_value to it.
Parameters
keyThe
keythat is used to store the variable in the cache.keyis case sensitive.old_valueOld value of the variable pointed by
keyin the user cache. The value should be of typelong, otherwise the function returns false.new_valueNew value which will get assigned to variable pointer by
keyif a match is found. The value should be of typelong, otherwise the function returns false.
Return Values
Success
Examples
Using wincache_ucache_cas()
<?php
wincache_ucache_set('counter', 2922);
var_dump(wincache_ucache_cas('counter', 2922, 1));
var_dump(wincache_ucache_get('counter'));
?>The above example will output:
bool(true)
int(1)