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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/php/Symfony/Component/Cache/Adapter/   drwxr-xr-x
Free 13.27 GB of 57.97 GB (22.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     NullAdapter.php (2.47 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\Cache\CacheItemInterface;
use 
Symfony\Component\Cache\CacheItem;
use 
Symfony\Contracts\Cache\CacheInterface;

/**
 * @author Titouan Galopin <galopintitouan@gmail.com>
 */
class NullAdapter implements AdapterInterfaceCacheInterface
{
    private 
$createCacheItem;

    public function 
__construct()
    {
        
$this->createCacheItem \Closure::bind(
            function (
$key) {
                
$item = new CacheItem();
                
$item->key $key;
                
$item->isHit false;

                return 
$item;
            },
            
$this,
            
CacheItem::class
        );
    }

    
/**
     * {@inheritdoc}
     */
    
public function get(string $key, callable $callbackfloat $beta null, array &$metadata null)
    {
        
$save true;

        return 
$callback(($this->createCacheItem)($key), $save);
    }

    
/**
     * {@inheritdoc}
     */
    
public function getItem($key)
    {
        
$f $this->createCacheItem;

        return 
$f($key);
    }

    
/**
     * {@inheritdoc}
     */
    
public function getItems(array $keys = [])
    {
        return 
$this->generateItems($keys);
    }

    
/**
     * {@inheritdoc}
     */
    
public function hasItem($key)
    {
        return 
false;
    }

    
/**
     * {@inheritdoc}
     */
    
public function clear()
    {
        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
public function deleteItem($key)
    {
        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
public function deleteItems(array $keys)
    {
        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
public function save(CacheItemInterface $item)
    {
        return 
false;
    }

    
/**
     * {@inheritdoc}
     */
    
public function saveDeferred(CacheItemInterface $item)
    {
        return 
false;
    }

    
/**
     * {@inheritdoc}
     */
    
public function commit()
    {
        return 
false;
    }

    
/**
     * {@inheritdoc}
     */
    
public function delete(string $key): bool
    
{
        return 
$this->deleteItem($key);
    }

    private function 
generateItems(array $keys)
    {
        
$f $this->createCacheItem;

        foreach (
$keys as $key) {
            yield 
$key => $f($key);
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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