wordpress / latest / functions / wp_cache_get_last_changed.html

wp_cache_get_last_changed( string $group ): string

Gets last changed date for the specified cache group.

Parameters

$group string Required
Where the cache contents are grouped.

Return

string UNIX timestamp with microseconds representing when the group was last changed.

Source

File: wp-includes/functions.php. View all references

function wp_cache_get_last_changed( $group ) {
	$last_changed = wp_cache_get( 'last_changed', $group );

	if ( ! $last_changed ) {
		$last_changed = microtime();
		wp_cache_set( 'last_changed', $last_changed, $group );
	}

	return $last_changed;
}

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
4.7.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_cache_get_last_changed