wp_cache_get_last_changed

函数
wp_cache_get_last_changed ( $group )
参数
  • (string) $group Where the cache contents are grouped.
    Required:
返回值
  • (string) UNIX timestamp with microseconds representing when the group was last changed.
定义位置
相关方法
wp_cache_set_sites_last_changedwp_cache_set_terms_last_changedwp_cache_set_posts_last_changedwp_cache_set_comments_last_changedwp_cache_get_multiple
引入
4.7.0
弃用
-

wp_cache_get_last_changed: 这个函数检索缓存最后一次被改变的时间。

获取指定缓存组的最后更改日期。

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;
}

常见问题

FAQs
查看更多 >