wp_cache_decr [ WordPress Function ]
wp_cache_decr ( $key, $offset = 1, $group = '' )
| Parameters: |
|
| Uses: |
|
| See: |
|
| Returns: |
|
| Defined at: |
|
Decrement numeric cache item's value
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- wp_cache_decr() WordPress function reference, arguments and ...
wp_cache_decr( $key, $offset = 1, $group = '' ). key: (int|string) The cache key to increment; offset: (int) The amount by which to decrement the item's value.
queryposts.com - #18494 (Introduce wp_cache_incr() and wp_cache_decr ...
Bring the default cache into parity with other cache backends. Change History. comment:1 ryan — 9 months ago. Owner set to ryan; Status changed from new to ...
core.trac.wordpress.org - PHPXRef 0.7 : WordPress : Detail view of cache.php
wp_cache_decr() wp_cache_delete() wp_cache_flush() wp_cache_get() wp_cache_incr() wp_cache_init() wp_cache_replace() wp_cache_set() ...
phpxref.ftwr.co.uk - PHPXRef 0.7 : WordPress : /wp-includes/cache.php source
57 */ 58 function wp_cache_decr( $key, $offset = 1, $group = '' ) { 59 global $ wp_object_cache; 60 61 return $wp_object_cache->decr( $key, $offset, $group ) ...
phpxref.ftwr.co.uk