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.41
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 /
ext /
standard /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
array
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
assert
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
class_object
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
crypt
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
dir
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
directory
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
file
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
filters
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
general_functions
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
hrtime
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
http
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
image
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
ini_info
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
mail
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
math
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
misc
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
network
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
password
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
random
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
serialize
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
streams
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
strings
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
time
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
url
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
versioning
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
bug49244.phpt
411
B
-rw-rw-r--
2022-10-31 11:36
bug64370_var1.phpt
590
B
-rw-rw-r--
2022-10-31 11:36
bug64370_var2.phpt
299
B
-rw-rw-r--
2022-10-31 11:36
bug71827.phpt
248
B
-rw-rw-r--
2022-10-31 11:36
bug75220.phpt
363
B
-rw-rw-r--
2022-10-31 11:36
bug79821.phpt
412
B
-rw-rw-r--
2022-10-31 11:36
bug80915.phpt
280
B
-rw-rw-r--
2022-10-31 11:36
bug81048.phpt
404
B
-rw-rw-r--
2022-10-31 11:36
bug81727.phpt
326
B
-rw-rw-r--
2022-10-31 11:36
forward_static_call_array.phpt
764
B
-rw-rw-r--
2022-10-31 11:36
php_version_win_const.phpt
323
B
-rw-rw-r--
2022-10-31 11:36
setrawcookie_basic_001.phpt
246
B
-rw-rw-r--
2022-10-31 11:36
setrawcookie_basic_002.phpt
294
B
-rw-rw-r--
2022-10-31 11:36
skipif_root.inc
341
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- mixed forward_static_call_array ( callable $function , array $parameters ); --CREDITS-- marcosptf - <marcosptf@yahoo.com.br> - @phpsp - sao paulo - br --FILE-- <?php function test() { $args = func_get_args(); echo "C " . join(',', $args) . " \n"; } class A { const NAME = 'A'; public static function test() { $args = func_get_args(); echo static::NAME, " " . join(',', $args) . " \n"; } } class B extends A { const NAME = 'B'; public static function test() { echo self::NAME, "\n"; forward_static_call_array(array('A', 'test'), array('more', 'args')); forward_static_call_array('test', array('other', 'args')); } } B::test('foo'); ?> --EXPECT-- B B more,args C other,args