wp_cache_get

Advertisement

Summery Summery

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

Syntax Syntax

wp_cache_get( int|string $key, string $group = '', bool $force = false, bool $found = null )

Parameters Parameters

$key

(Required) The key under which the cache contents are stored.

$group

(Optional) Where the cache contents are grouped.

Default value: ''

$force

(Optional) Whether to force an update of the local cache from the persistent cache.

Default value: false

$found

(Optional) Whether the key was found in the cache (passed by reference). Disambiguates a return of false, a storable value.

Default value: null

Return Return

(mixed|false) The cache contents on success, false on failure to retrieve contents.

Source Source

File: wp-includes/cache.php

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

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

Advertisement

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

See also See also

Advertisement

Leave a Reply