webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Expr
--
ren
Name
--
ren
Scalar
--
ren
Stmt
--
ren
Arg.php
1.269KB
edt
ren
ArrayItem.php
1.184KB
edt
ren
Attribute.php
0.801KB
edt
ren
AttributeGroup.php
0.632KB
edt
ren
ClosureUse.php
0.95KB
edt
ren
ComplexType.php
0.315KB
edt
ren
Const_.php
0.948KB
edt
ren
DeclareItem.php
0.969KB
edt
ren
Expr.php
0.13KB
edt
ren
FunctionLike.php
0.714KB
edt
ren
Identifier.php
1.773KB
edt
ren
InterpolatedStringPart.php
0.83KB
edt
ren
IntersectionType.php
0.649KB
edt
ren
MatchArm.php
0.662KB
edt
ren
Name.php
8.177KB
edt
ren
NullableType.php
0.663KB
edt
ren
Param.php
2.548KB
edt
ren
PropertyItem.php
1.047KB
edt
ren
Scalar.php
0.096KB
edt
ren
StaticVar.php
0.976KB
edt
ren
Stmt.php
0.13KB
edt
ren
UnionType.php
0.661KB
edt
ren
UseItem.php
1.638KB
edt
ren
VarLikeIdentifier.php
0.49KB
edt
ren
VariadicPlaceholder.php
0.638KB
edt
ren
<?php declare(strict_types=1); namespace PhpParser\Node; use PhpParser\NodeAbstract; class ArrayItem extends NodeAbstract { /** @var null|Expr Key */ public ?Expr $key; /** @var Expr Value */ public Expr $value; /** @var bool Whether to assign by reference */ public bool $byRef; /** @var bool Whether to unpack the argument */ public bool $unpack; /** * Constructs an array item node. * * @param Expr $value Value * @param null|Expr $key Key * @param bool $byRef Whether to assign by reference * @param array<string, mixed> $attributes Additional attributes */ public function __construct(Expr $value, ?Expr $key = null, bool $byRef = false, array $attributes = [], bool $unpack = false) { $this->attributes = $attributes; $this->key = $key; $this->value = $value; $this->byRef = $byRef; $this->unpack = $unpack; } public function getSubNodeNames(): array { return ['key', 'value', 'byRef', 'unpack']; } public function getType(): string { return 'ArrayItem'; } } // @deprecated compatibility alias class_alias(ArrayItem::class, Expr\ArrayItem::class);