wp_cache_delete

函数
wp_cache_delete ( $key, $group = '' )
参数
  • (int|string) $key What the contents in the cache are called.
    Required:
  • (string) $group Optional. Where the cache contents are grouped. Default empty.
    Required:
    Default: (empty)
返回值
  • (bool) True on successful removal, false on failure.
相关
  • WP_Object_Cache::delete()
定义位置
相关方法
wp_cache_resetwp_cache_getwp_cache_setwp_cache_decrwp_cache_replace
引入
2.0.0
弃用
-

wp_cache_delete: 此函数从缓存中删除与指定键相关的值。

删除匹配key和group的缓存内容。

function wp_cache_delete( $key, $group = '' ) {
	global $wp_object_cache;

	return $wp_object_cache->delete( $key, $group );
}

常见问题

FAQs
查看更多 >