[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-includes
/
SimplePie
/
src
/
Cache
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 Base.php
1,878 B
SET
[ EDIT ]
|
[ DEL ]
📄 BaseDataCache.php
3,587 B
SET
[ EDIT ]
|
[ DEL ]
📄 CallableNameFilter.php
1,518 B
SET
[ EDIT ]
|
[ DEL ]
📄 DB.php
3,705 B
SET
[ EDIT ]
|
[ DEL ]
📄 DataCache.php
2,799 B
SET
[ EDIT ]
|
[ DEL ]
📄 File.php
2,977 B
SET
[ EDIT ]
|
[ DEL ]
📄 Memcache.php
3,712 B
SET
[ EDIT ]
|
[ DEL ]
📄 Memcached.php
3,829 B
SET
[ EDIT ]
|
[ DEL ]
📄 MySQL.php
13,703 B
SET
[ EDIT ]
|
[ DEL ]
📄 NameFilter.php
1,175 B
SET
[ EDIT ]
|
[ DEL ]
📄 Psr16.php
3,256 B
SET
[ EDIT ]
|
[ DEL ]
📄 Redis.php
4,305 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: NameFilter.php
<?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; }