wp_cache_get
函数
wp_cache_get ( $key, $group = '', $force = false, $found = null )
- 参数
-
-
(int|string)
$key
The key under which the cache contents are stored.- Required: 是
-
(string)
$group
Optional. Where the cache contents are grouped. Default empty.- Required: 否
- Default: (empty)
-
(bool)
$force
Optional. Whether to force an update of the local cache from the persistent cache. Default false.- Required: 否
- Default: false
-
(bool)
$found
Optional. Whether the key was found in the cache (passed by reference). Disambiguates a return of false, a storable value. Default null.- Required: 否
- Default: null
-
(int|string)
- 返回值
-
- (mixed|false) The cache contents on success, false on failure to retrieve contents.
- 相关
-
- WP_Object_Cache::get()
- 定义位置
-
-
wp-includes/cache.php
, line 151
-
wp-includes/cache.php
- 引入
- 2.0.0
- 弃用
- –
Retrieves the cache contents from the cache by key and group.
function wp_cache_get( $key, $group = '', $force = false, &$found = null ) { global $wp_object_cache; return $wp_object_cache->get( $key, $group, $force, $found ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。