WP_Object_Cache::replace( int|string $key, mixed $data, string $group = 'default', int $expire )
Replaces the contents in the cache, if contents already exist.
Description
See also
Parameters
- $key
-
(Required) What to call the contents in the cache.
- $data
-
(Required) The contents to store in the cache.
- $group
-
(Optional) Where to group the cache contents. Default 'default'.
Default value: 'default'
- $expire
-
(Optional) When to expire the cache contents. Default 0 (no expiration).
Return
(bool) False if not exists, true if contents were replaced.
Source
File: wp-includes/cache.php
public function replace( $key, $data, $group = 'default', $expire = 0 ) {
if ( empty( $group ) )
$group = 'default';
$id = $key;
if ( $this->multisite && ! isset( $this->global_groups[ $group ] ) )
$id = $this->blog_prefix . $key;
if ( ! $this->_exists( $id, $group ) )
return false;
return $this->set( $key, $data, $group, (int) $expire );
}
Changelog
Version | Description |
---|---|
WP-2.0.0 | Introduced. |