Changeset 52708 for trunk/src/wp-includes/cache-compat.php
- Timestamp:
- 02/11/2022 07:19:57 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache-compat.php
r52706 r52708 24 24 * @param int $expire Optional. When to expire the cache contents, in seconds. 25 25 * Default 0 (no expiration). 26 * @return array Array of return values. 26 * @return bool[] Array of return values, grouped by key. Each value is either 27 * true on success, or false if cache key and group already exist. 27 28 */ 28 29 function wp_cache_add_multiple( array $data, $group = '', $expire = 0 ) { … … 54 55 * @param int $expire Optional. When to expire the cache contents, in seconds. 55 56 * Default 0 (no expiration). 56 * @return array Array of return values. 57 * @return bool[] Array of return values, grouped by key. Each value is either 58 * true on success, or false on failure. 57 59 */ 58 60 function wp_cache_set_multiple( array $data, $group = '', $expire = 0 ) { … … 82 84 * @param bool $force Optional. Whether to force an update of the local cache 83 85 * from the persistent cache. Default false. 84 * @return array Array of values organized into groups. 86 * @return array Array of return values, grouped by key. Each value is either 87 * the cache contents on success, or false on failure. 85 88 */ 86 89 function wp_cache_get_multiple( $keys, $group = '', $force = false ) { … … 108 111 * @param array $keys Array of keys under which the cache to deleted. 109 112 * @param string $group Optional. Where the cache contents are grouped. Default empty. 110 * @return array Array of return values. 113 * @return bool[] Array of return values, grouped by key. Each value is either 114 * true on success, or false if the contents were not deleted. 111 115 */ 112 116 function wp_cache_delete_multiple( array $keys, $group = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.