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; /** * Creating a cache filename with callables */ final class CallableNameFilter implements NameFilter { /** * @var callable(string): string */ private $callable; /** * @param callable(string): string $callable */ public function __construct(callable $callable) { $this->callable = $callable; } /** * 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 { return call_user_func($this->callable, $name); } }