wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_cache_get › WordPress Function

Od2.0.0
Przestarzałyn/a
wp_cache_get ( $key, $group = '', $force = false, $found = null )
Parametry: (4)
  • (int|string) $key The key under which the cache contents are stored.
    Wymagane: Tak
  • (string) $group Optional. Where the cache contents are grouped. Default empty.
    Wymagane: Nie
    Domyślny: (puste)
  • (bool) $force Optional. Whether to force an update of the local cache from the persistent cache. Default false.
    Wymagane: Nie
    Domyślny: false
  • (bool) $found Optional. Whether the key was found in the cache (passed by reference). Disambiguates a return of false, a storable value. Default null.
    Wymagane: Nie
    Domyślny: null
Zobacz:
  • WP_Object_Cache::get()
Powrót:
  • (mixed|false) The cache contents on success, false on failure to retrieve contents.
Zdefiniowane na:
Codex:

Retrieves the cache contents from the cache by key and group.



Źródło

function wp_cache_get( $key, $group = '', $force = false, &$found = null ) {
	global $wp_object_cache;

	return $wp_object_cache->get( $key, $group, $force, $found );
}