__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
// SPDX-License-Identifier: BSD-3-Clause
declare(strict_types=1);
namespace SimplePie\Cache;
/**
* Interface for creating a cache filename
*/
interface NameFilter
{
/**
* Method to create cache filename with.
*
* The returning name MUST follow the rules for keys in PSR-16.
*
* @link https://www.php-fig.org/psr/psr-16/
*
* The returning name MUST be a string of at least one character
* that uniquely identifies a cached item, MUST only contain the
* characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
* and MUST not longer then 64 characters. The following characters
* are reserved for future extensions and MUST NOT be used: {}()/\@:
*
* A provided implementing library MAY support additional characters
* and encodings or longer lengths, but MUST support at least that
* minimum.
*
* @param string $name The name for the cache will be most likely an url with query string
*
* @return string the new cache name
*/
public function filter(string $name): string;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Base.php | File | 1.83 KB | 0664 |
|
| BaseDataCache.php | File | 3.5 KB | 0664 |
|
| CallableNameFilter.php | File | 1.48 KB | 0664 |
|
| DB.php | File | 3.62 KB | 0664 |
|
| DataCache.php | File | 2.73 KB | 0664 |
|
| File.php | File | 2.91 KB | 0664 |
|
| Memcache.php | File | 3.63 KB | 0664 |
|
| Memcached.php | File | 3.74 KB | 0664 |
|
| MySQL.php | File | 13.38 KB | 0664 |
|
| NameFilter.php | File | 1.15 KB | 0664 |
|
| Psr16.php | File | 3.18 KB | 0664 |
|
| Redis.php | File | 4.2 KB | 0664 |
|