Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
vendor /
symfony /
cache /
Simple /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractCache.php
6.41
KB
-rw-r--r--
2021-02-05 18:32
ApcuCache.php
961
B
-rw-r--r--
2021-02-05 18:32
ArrayCache.php
5.26
KB
-rw-r--r--
2021-02-05 18:32
ChainCache.php
6.92
KB
-rw-r--r--
2021-02-05 18:32
DoctrineCache.php
1.08
KB
-rw-r--r--
2021-02-05 18:32
FilesystemCache.php
1.31
KB
-rw-r--r--
2021-02-05 18:32
MemcachedCache.php
1.11
KB
-rw-r--r--
2021-02-05 18:32
NullCache.php
1.91
KB
-rw-r--r--
2021-02-05 18:32
PdoCache.php
2.59
KB
-rw-r--r--
2021-02-05 18:32
PhpArrayCache.php
7.69
KB
-rw-r--r--
2021-02-05 18:32
PhpFilesCache.php
1.72
KB
-rw-r--r--
2021-02-05 18:32
Psr6Cache.php
579
B
-rw-r--r--
2021-02-05 18:32
RedisCache.php
1.15
KB
-rw-r--r--
2021-02-05 18:32
TraceableCache.php
6.28
KB
-rw-r--r--
2021-02-05 18:32
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Cache\Simple; use Symfony\Component\Cache\Adapter\PhpFilesAdapter; use Symfony\Component\Cache\Exception\CacheException; use Symfony\Component\Cache\PruneableInterface; use Symfony\Component\Cache\Traits\PhpFilesTrait; use Symfony\Contracts\Cache\CacheInterface; @trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.3, use "%s" and type-hint for "%s" instead.', PhpFilesCache::class, PhpFilesAdapter::class, CacheInterface::class), \E_USER_DEPRECATED); /** * @deprecated since Symfony 4.3, use PhpFilesAdapter and type-hint for CacheInterface instead. */ class PhpFilesCache extends AbstractCache implements PruneableInterface { use PhpFilesTrait; /** * @param $appendOnly Set to `true` to gain extra performance when the items stored in this pool never expire. * Doing so is encouraged because it fits perfectly OPcache's memory model. * * @throws CacheException if OPcache is not enabled */ public function __construct(string $namespace = '', int $defaultLifetime = 0, string $directory = null, bool $appendOnly = false) { $this->appendOnly = $appendOnly; self::$startTime = self::$startTime ?? $_SERVER['REQUEST_TIME'] ?? time(); parent::__construct('', $defaultLifetime); $this->init($namespace, $directory); $this->includeHandler = static function ($type, $msg, $file, $line) { throw new \ErrorException($msg, 0, $type, $file, $line); }; } }