!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/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/   drwxr-xr-x
Free 13.11 GB of 57.97 GB (22.62%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * This file is part of SwiftMailer.
 * (c) 2004-2009 Chris Corbyn
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * A basic KeyCache backed by an array.
 *
 * @author Chris Corbyn
 */
class Swift_KeyCache_ArrayKeyCache implements Swift_KeyCache
{
    
/**
     * Cache contents.
     *
     * @var array
     */
    
private $contents = [];

    
/**
     * An InputStream for cloning.
     *
     * @var Swift_KeyCache_KeyCacheInputStream
     */
    
private $stream;

    
/**
     * Create a new ArrayKeyCache with the given $stream for cloning to make
     * InputByteStreams.
     */
    
public function __construct(Swift_KeyCache_KeyCacheInputStream $stream)
    {
        
$this->stream $stream;
    }

    
/**
     * Set a string into the cache under $itemKey for the namespace $nsKey.
     *
     * @see MODE_WRITE, MODE_APPEND
     *
     * @param string $nsKey
     * @param string $itemKey
     * @param string $string
     * @param int    $mode
     */
    
public function setString($nsKey$itemKey$string$mode)
    {
        
$this->prepareCache($nsKey);
        switch (
$mode) {
            case 
self::MODE_WRITE:
                
$this->contents[$nsKey][$itemKey] = $string;
                break;
            case 
self::MODE_APPEND:
                if (!
$this->hasKey($nsKey$itemKey)) {
                    
$this->contents[$nsKey][$itemKey] = '';
                }
                
$this->contents[$nsKey][$itemKey] .= $string;
                break;
            default:
                throw new 
Swift_SwiftException('Invalid mode ['.$mode.'] used to set nsKey='.$nsKey.', itemKey='.$itemKey);
        }
    }

    
/**
     * Set a ByteStream into the cache under $itemKey for the namespace $nsKey.
     *
     * @see MODE_WRITE, MODE_APPEND
     *
     * @param string $nsKey
     * @param string $itemKey
     * @param int    $mode
     */
    
public function importFromByteStream($nsKey$itemKeySwift_OutputByteStream $os$mode)
    {
        
$this->prepareCache($nsKey);
        switch (
$mode) {
            case 
self::MODE_WRITE:
                
$this->clearKey($nsKey$itemKey);
                
// no break
            
case self::MODE_APPEND:
                if (!
$this->hasKey($nsKey$itemKey)) {
                    
$this->contents[$nsKey][$itemKey] = '';
                }
                while (
false !== $bytes $os->read(8192)) {
                    
$this->contents[$nsKey][$itemKey] .= $bytes;
                }
                break;
            default:
                throw new 
Swift_SwiftException('Invalid mode ['.$mode.'] used to set nsKey='.$nsKey.', itemKey='.$itemKey);
        }
    }

    
/**
     * Provides a ByteStream which when written to, writes data to $itemKey.
     *
     * NOTE: The stream will always write in append mode.
     *
     * @param string $nsKey
     * @param string $itemKey
     *
     * @return Swift_InputByteStream
     */
    
public function getInputByteStream($nsKey$itemKeySwift_InputByteStream $writeThrough null)
    {
        
$is = clone $this->stream;
        
$is->setKeyCache($this);
        
$is->setNsKey($nsKey);
        
$is->setItemKey($itemKey);
        if (isset(
$writeThrough)) {
            
$is->setWriteThroughStream($writeThrough);
        }

        return 
$is;
    }

    
/**
     * Get data back out of the cache as a string.
     *
     * @param string $nsKey
     * @param string $itemKey
     *
     * @return string
     */
    
public function getString($nsKey$itemKey)
    {
        
$this->prepareCache($nsKey);
        if (
$this->hasKey($nsKey$itemKey)) {
            return 
$this->contents[$nsKey][$itemKey];
        }
    }

    
/**
     * Get data back out of the cache as a ByteStream.
     *
     * @param string                $nsKey
     * @param string                $itemKey
     * @param Swift_InputByteStream $is      to write the data to
     */
    
public function exportToByteStream($nsKey$itemKeySwift_InputByteStream $is)
    {
        
$this->prepareCache($nsKey);
        
$is->write($this->getString($nsKey$itemKey));
    }

    
/**
     * Check if the given $itemKey exists in the namespace $nsKey.
     *
     * @param string $nsKey
     * @param string $itemKey
     *
     * @return bool
     */
    
public function hasKey($nsKey$itemKey)
    {
        
$this->prepareCache($nsKey);

        return 
\array_key_exists($itemKey$this->contents[$nsKey]);
    }

    
/**
     * Clear data for $itemKey in the namespace $nsKey if it exists.
     *
     * @param string $nsKey
     * @param string $itemKey
     */
    
public function clearKey($nsKey$itemKey)
    {
        unset(
$this->contents[$nsKey][$itemKey]);
    }

    
/**
     * Clear all data in the namespace $nsKey if it exists.
     *
     * @param string $nsKey
     */
    
public function clearAll($nsKey)
    {
        unset(
$this->contents[$nsKey]);
    }

    
/**
     * Initialize the namespace of $nsKey if needed.
     *
     * @param string $nsKey
     */
    
private function prepareCache($nsKey)
    {
        if (!
\array_key_exists($nsKey$this->contents)) {
            
$this->contents[$nsKey] = [];
        }
    }
}

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