Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
Zend /
tests /
varSyntax /
Delete
Unzip
Name
Size
Permission
Date
Action
constClassMemberAccess.phpt
317
B
-rw-rw-r--
2022-10-31 11:36
globalNonSimpleVariableError.phpt
207
B
-rw-rw-r--
2022-10-31 11:36
indirectFcall.phpt
903
B
-rw-rw-r--
2022-10-31 11:36
issetOnTemp.phpt
531
B
-rw-rw-r--
2022-10-31 11:36
method_call_on_string_literal.phpt
221
B
-rw-rw-r--
2022-10-31 11:36
newVariable.phpt
840
B
-rw-rw-r--
2022-10-31 11:36
parenthesesDeref.phpt
333
B
-rw-rw-r--
2022-10-31 11:36
propertyOfStringError.phpt
154
B
-rw-rw-r--
2022-10-31 11:36
staticMember.phpt
512
B
-rw-rw-r--
2022-10-31 11:36
static_prop_on_expr_class.phpt
193
B
-rw-rw-r--
2022-10-31 11:36
static_prop_on_expr_class_with_backslash.phpt
181
B
-rw-rw-r--
2022-10-31 11:36
static_prop_on_int_expr_class.phpt
250
B
-rw-rw-r--
2022-10-31 11:36
tempDimFetchByRefError.phpt
288
B
-rw-rw-r--
2022-10-31 11:36
tempPropFetchByRefError.phpt
290
B
-rw-rw-r--
2022-10-31 11:36
writeToTempExpr.phpt
184
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Static member access --FILE-- <?php class A { public static $b = 0; public static $c = [0, 1]; public static $A_str = 'A'; } $A_str = 'A'; $A_obj = new A; $b_str = 'b'; $c_str = 'c'; var_dump(A::$b); var_dump($A_str::$b); var_dump($A_obj::$b); var_dump(('A' . '')::$b); var_dump('A'::$b); var_dump('\A'::$b); var_dump('A'[0]::$b); var_dump(A::$$b_str); var_dump(A::$$c_str[1]); var_dump(A::$A_str::$b); ?> --EXPECT-- int(0) int(0) int(0) int(0) int(0) int(0) int(0) int(0) int(1) int(0)