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-- Variable as class name for new expression --FILE-- <?php $className = 'stdClass'; $array = ['className' => 'stdClass']; $obj = (object) ['className' => 'stdClass']; class Test { public static $className = 'stdClass'; } $test = 'Test'; $weird = [0 => (object) ['foo' => 'Test']]; var_dump(new $className); var_dump(new $array['className']); var_dump(new $array{'className'}); var_dump(new $obj->className); var_dump(new Test::$className); var_dump(new $test::$className); var_dump(new $weird[0]->foo::$className); ?> --EXPECTF-- Deprecated: Array and string offset access syntax with curly braces is deprecated in %s on line %d object(stdClass)#%d (0) { } object(stdClass)#%d (0) { } object(stdClass)#%d (0) { } object(stdClass)#%d (0) { } object(stdClass)#%d (0) { } object(stdClass)#%d (0) { } object(stdClass)#%d (0) { }