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

/home/ccl/vendor/illuminate/support/   drwxrwxr-x
Free 13.1 GB of 57.97 GB (22.61%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Support;

use 
ArrayAccess;

class 
Optional implements ArrayAccess
{
    use 
Traits\Macroable {
        
__call as macroCall;
    }

    
/**
     * The underlying object.
     *
     * @var mixed
     */
    
protected $value;

    
/**
     * Create a new optional instance.
     *
     * @param  mixed  $value
     * @return void
     */
    
public function __construct($value)
    {
        
$this->value $value;
    }

    
/**
     * Dynamically access a property on the underlying object.
     *
     * @param  string  $key
     * @return mixed
     */
    
public function __get($key)
    {
        if (
is_object($this->value)) {
            return 
$this->value->{$key};
        }
    }

    
/**
     * Dynamically pass a method to the underlying object.
     *
     * @param  string  $method
     * @param  array  $parameters
     * @return mixed
     */
    
public function __call($method$parameters)
    {
        if (static::
hasMacro($method)) {
            return 
$this->macroCall($method$parameters);
        }

        if (
is_object($this->value)) {
            return 
$this->value->{$method}(...$parameters);
        }
    }

    
/**
     * Determine if an item exists at an offset.
     *
     * @param  mixed  $key
     * @return bool
     */
    
public function offsetExists($key)
    {
        return 
Arr::accessible($this->value) && Arr::exists($this->value$key);
    }

    
/**
     * Get an item at a given offset.
     *
     * @param  mixed  $key
     * @return mixed
     */
    
public function offsetGet($key)
    {
        return 
Arr::get($this->value$key);
    }

    
/**
     * Set the item at a given offset.
     *
     * @param  mixed  $key
     * @param  mixed  $value
     * @return void
     */
    
public function offsetSet($key$value)
    {
        if (
Arr::accessible($this->value)) {
            
$this->value[$key] = $value;
        }
    }

    
/**
     * Unset the item at a given offset.
     *
     * @param  string  $key
     * @return void
     */
    
public function offsetUnset($key)
    {
        if (
Arr::accessible($this->value)) {
            unset(
$this->value[$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.0053 ]--