Uses
Uses | Description |
---|---|
wp-includes/class-wp-object-cache.php: WP_Object_Cache::replace() | Replaces the contents in the cache, if contents already exist. |
Replaces the contents of the cache with new data.
(int|string) (Required) The key for the cache data that should be replaced.
(mixed) (Required) The new data to store in the cache.
(string) (Optional) The group for the cache data that should be replaced.
Default value: ''
(int) (Optional) When to expire the cache contents, in seconds. Default 0 (no expiration).
(bool) False if original value does not exist, true if contents were replaced
File: wp-includes/cache.php
function wp_cache_replace( $key, $data, $group = '', $expire = 0 ) { global $wp_object_cache; return $wp_object_cache->replace( $key, $data, $group, (int) $expire ); }
Version | Description |
---|---|
2.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_cache_replace