??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/servermailblast.com/wp-includes__9dabcd8/SimplePie/src/Cache/Base.php
⬅ Kembali
<?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');
Nama
Tipe
Ukuran
Diubah
Aksi
📄 .htaccess
htaccess
420 B
2026-06-12 08:08
🐘 Base.php
php
1.8 KB
2025-12-03 05:04
🐘 BaseDataCache.php
php
3.5 KB
2025-12-03 05:04
🐘 CallableNameFilter.php
php
1.5 KB
2025-12-03 05:04
🐘 DB.php
php
3.6 KB
2025-12-03 05:04
🐘 DataCache.php
php
2.7 KB
2025-12-03 05:04
🐘 File.php
php
2.9 KB
2025-12-03 05:04
🐘 Memcache.php
php
3.6 KB
2025-12-03 05:04
🐘 Memcached.php
php
3.7 KB
2025-12-03 05:04
🐘 MySQL.php
php
13.4 KB
2025-12-03 05:04
🐘 NameFilter.php
php
1.1 KB
2025-12-03 05:04
🐘 Psr16.php
php
3.2 KB
2025-12-03 05:04
🐘 Redis.php
php
4.2 KB
2025-12-03 05:04