wp_cache_set_multiple

函数
wp_cache_set_multiple ( $data, $group = '', $expire = 0 )
参数
  • (array) $data Array of keys and values to be set.
    Required:
  • (string) $group Optional. Where the cache contents are grouped. Default empty.
    Required:
    Default: (empty)
  • (int) $expire Optional. When to expire the cache contents, in seconds. Default 0 (no expiration).
    Required:
返回值
  • (bool[]) Array of return values, grouped by key. Each value is either true on success, or false on failure.
相关
  • WP_Object_Cache::set_multiple()
定义位置
相关方法
wp_cache_get_multiplewp_cache_delete_multiplewp_cache_add_multiplewp_cache_setwp_cache_replace
引入
6.0.0
弃用
-

wp_cache_set_multiple函数用于一次在缓存中设置多个值。它接收一个键/值对的关联数组,并将每个键/值对添加到缓存中。

在一次调用中为缓存设置多个值。

function wp_cache_set_multiple( array $data, $group = '', $expire = 0 ) {
	global $wp_object_cache;

	return $wp_object_cache->set_multiple( $data, $group, $expire );
}

常见问题

FAQs
查看更多 >