wp_cache_add

函数
wp_cache_add ( $key, $data, $group = '', $expire = 0 )
参数
  • (int|string) $key The cache key to use for retrieval later.
    Required:
  • (mixed) $data The data to add to the cache.
    Required:
  • (string) $group Optional. The group to add the cache to. Enables the same key to be used across groups. Default empty.
    Required:
    Default: (empty)
  • (int) $expire Optional. When the cache data should expire, in seconds. Default 0 (no expiration).
    Required:
返回值
  • (bool) True on success, false if cache key and group already exist.
相关
  • WP_Object_Cache::add()
定义位置
相关方法
wp_cache_decrwp_cache_getwp_cache_setwp_headwp_cache_delete
引入
2.0.0
弃用
-

wp_cache_add: 这个函数在缓存中存储一个值,将其与指定的键相关联。如果该键已经存在于缓存中,该值将不会被覆盖。如果该值被成功添加到缓存中,该函数返回true。

将数据添加到缓存中,如果缓存键不已经存在的话。

function wp_cache_add( $key, $data, $group = '', $expire = 0 ) {
	global $wp_object_cache;

	return $wp_object_cache->add( $key, $data, $group, (int) $expire );
}

常见问题

FAQs
查看更多 >