wp_cache_set_multiple()WP 6.0.0

Sets multiple values to the cache in one call.

Хуков нет.

Возвращает

bool[]. Array of return values, grouped by key. Each value is either true on success, or false on failure.

Использование

wp_cache_set_multiple( $data, $group, $expire );
$data(массив) (обязательный)
Array of keys and values to be set.
$group(строка)
Where the cache contents are grouped.
По умолчанию: ''
$expire(int)
When to expire the cache contents, in seconds.
По умолчанию: 0 (no expiration)

Заметки

Смотрите: WP_Object_Cache::set_multiple()
Global. WP_Object_Cache. $wp_object_cache Object cache global instance.

Список изменений

С версии 6.0.0 Введена.

Код wp_cache_set_multiple() WP 7.1

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

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