Changeset 48586 for trunk/src/wp-includes/cache.php
- Timestamp:
- 07/23/2020 07:59:16 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache.php
r47944 r48586 112 112 * @global WP_Object_Cache $wp_object_cache Object cache global instance. 113 113 * 114 * @param int|string $keyThe key under which the cache contents are stored.115 * @param string $groupOptional. Where the cache contents are grouped. Default empty.116 * @param bool $forceOptional. Whether to force an update of the local cache117 * 118 * @param bool $foundOptional. Whether the key was found in the cache (passed by reference).119 * 114 * @param int|string $key The key under which the cache contents are stored. 115 * @param string $group Optional. Where the cache contents are grouped. Default empty. 116 * @param bool $force Optional. Whether to force an update of the local cache 117 * from the persistent cache. Default false. 118 * @param bool $found Optional. Whether the key was found in the cache (passed by reference). 119 * Disambiguates a return of false, a storable value. Default null. 120 120 * @return mixed|false The cache contents on success, false on failure to retrieve contents. 121 121 */
Note: See TracChangeset
for help on using the changeset viewer.