Switch language

wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren




wp_cache_decr [ WordPress Function ]

wp_cache_decr ( $key, $offset = 1, $group = '' )
Parameter:
  • (int|string) $key The cache key to increment
  • (int) $offset The amount by which to decrement the item's value. Default is 1.
  • (string) $group The group the key is in.
Nutzt:
  • $wp_object_cache
Siehe:
  • WP_Object_Cache::decr()
Gibt zurück:
  • (false|int) False on failure, the item's new value on success.
Definiert in:



Decrement numeric cache item's value

Source


<?php
function wp_cache_decr$key$offset 1$group '' ) {
    global 
$wp_object_cache;

    return 
$wp_object_cache->decr$key$offset$group );
}
?>

Beispiele [ wp-snippets.com ]

Top Google Suchergebnisse

Mehr ...

Nutzerduskussionen [ wordpress.org ]

0 Nutzerkommentare

Noch keine. Sei der Erste!

Neu hinzufügen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics