Query: wincache_ucache_clear
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
WINCACHE_UCACHE_CLEAR(3) 1 WINCACHE_UCACHE_CLEAR(3) wincache_ucache_clear - Deletes entire content of the user cacheSYNOPSISbool wincache_ucache_clear (void )DESCRIPTIONClears/deletes all the values stored in the user cache.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 using wincache_ucache_clear(3) <?php wincache_ucache_set('green', 1); wincache_ucache_set('red', 2); wincache_ucache_set('orange', 4); wincache_ucache_set('blue', 8); wincache_ucache_set('cyan', 16); $array1 = array('green', 'red', 'orange', 'blue', 'cyan'); var_dump(wincache_ucache_get($array1)); var_dump(wincache_ucache_clear()); var_dump(wincache_ucache_get($array1)); ?> The above example will output: array(5) { ["green"]=> int(1) ["red"]=> int(2) ["orange"]=> int(4) ["blue"]=> int(8) ["cyan"]=> int(16) } bool(true) bool(false)SEE ALSOwincache_ucache_set(3), wincache_ucache_add(3), wincache_ucache_delete(3), wincache_ucache_get(3), wincache_ucache_exists(3), win- cache_ucache_meminfo(3), wincache_ucache_info(3). PHP Documentation Group WINCACHE_UCACHE_CLEAR(3)
Related Man Pages |
---|
array_diff_uassoc(3) - php |
array_intersect_ukey(3) - php |
wincache_ucache_add(3) - php |
wincache_ucache_info(3) - php |
wincache_ucache_set(3) - php |
Similar Topics in the Unix Linux Community |
---|
Duplicate words |
grep and delete 2nd duplicated of txt... -part2 |
what is wrong in this awk or grep .... |
Associative arrays |
Repeating a column but changing one parameter |