PHP.nl

wincache_ucache_inc

wincache_ucache_inc

Increments the value associated with the key

mixed **wincache_ucache_inc** string $key int $inc_by bool $success

Increments the value associated with the by 1 or as specified by . key``inc_by

key The that was used to store the variable in the cache. is case sensitive. key``key

inc_by The value by which the variable associated with the will get incremented. If the argument is a floating point number it will be truncated to nearest integer. The variable associated with the should be of type , otherwise the function fails and returns false. key``key``long

successWill be set to true on success and false on failure.

Returns the incremented value on success and false on failure.

**Voorbeeld: Using **

<?php
wincache_ucache_set('counter', 1);
var_dump(wincache_ucache_inc('counter', 2921, $success));
var_dump($success);
?>
int(2922) 
bool(true)

wincache_ucache_dec``wincache_ucache_cas