Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.217.64
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
georgeto /
wp-includes /
SimplePie /
src /
Cache /
Delete
Unzip
Name
Size
Permission
Date
Action
Base.php
1.83
KB
-rw-r--r--
2025-12-03 17:22
BaseDataCache.php
3.5
KB
-rw-r--r--
2025-12-03 17:22
CallableNameFilter.php
1.48
KB
-rw-r--r--
2025-12-03 17:22
DB.php
3.62
KB
-rw-r--r--
2025-12-03 17:22
DataCache.php
2.73
KB
-rw-r--r--
2025-12-03 17:22
File.php
2.91
KB
-rw-r--r--
2025-12-03 17:22
Memcache.php
3.63
KB
-rw-r--r--
2025-12-03 17:22
Memcached.php
3.74
KB
-rw-r--r--
2025-12-03 17:22
MySQL.php
13.38
KB
-rw-r--r--
2025-12-03 17:22
NameFilter.php
1.15
KB
-rw-r--r--
2025-12-03 17:22
Psr16.php
3.18
KB
-rw-r--r--
2025-12-03 17:22
Redis.php
4.2
KB
-rw-r--r--
2025-12-03 17:22
error_log
4.86
KB
-rw-r--r--
2025-12-23 20:38
Save
Rename
<?php // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue // SPDX-License-Identifier: BSD-3-Clause declare(strict_types=1); namespace SimplePie\Cache; /** * Base for cache objects * * Classes to be used with {@see \SimplePie\Cache::register()} are expected * to implement this interface. * * @deprecated since SimplePie 1.8.0, use "Psr\SimpleCache\CacheInterface" instead */ interface Base { /** * Feed cache type * * @var string */ public const TYPE_FEED = 'spc'; /** * Image cache type * * @var string */ public const TYPE_IMAGE = 'spi'; /** * Create a new cache object * * @param string $location Location string (from SimplePie::$cache_location) * @param string $name Unique ID for the cache * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data */ public function __construct(string $location, string $name, $type); /** * Save data to the cache * * @param array<mixed>|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property * @return bool Successfulness */ public function save($data); /** * Retrieve the data saved to the cache * * @return array<mixed> Data for SimplePie::$data */ public function load(); /** * Retrieve the last modified time for the cache * * @return int Timestamp */ public function mtime(); /** * Set the last modified time to the current time * * @return bool Success status */ public function touch(); /** * Remove the cache * * @return bool Success status */ public function unlink(); } class_alias('SimplePie\Cache\Base', 'SimplePie_Cache_Base');