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.112
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 /
tests /
func /
Delete
Unzip
Name
Size
Permission
Date
Action
001.phpt
84
B
-rw-rw-r--
2022-10-31 11:36
002.phpt
281
B
-rw-rw-r--
2022-10-31 11:36
003.phpt
4.46
KB
-rw-rw-r--
2022-10-31 11:36
004.phpt
1.58
KB
-rw-rw-r--
2022-10-31 11:36
005.phpt
234
B
-rw-rw-r--
2022-10-31 11:36
005a.phpt
464
B
-rw-rw-r--
2022-10-31 11:36
006.phpt
402
B
-rw-rw-r--
2022-10-31 11:36
007.phpt
382
B
-rw-rw-r--
2022-10-31 11:36
008.phpt
237
B
-rw-rw-r--
2022-10-31 11:36
009.phpt
236
B
-rw-rw-r--
2022-10-31 11:36
010.phpt
1.34
KB
-rw-rw-r--
2022-10-31 11:36
011.phpt
242
B
-rw-rw-r--
2022-10-31 11:36
bug64523.phpt
181
B
-rw-rw-r--
2022-10-31 11:36
ini_alter.phpt
319
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- General function test --FILE-- <?php echo "Before function declaration...\n"; function print_something_multiple_times($something,$times) { echo "----\nIn function, printing the string \"$something\" $times times\n"; for ($i=0; $i<$times; $i++) { echo "$i) $something\n"; } echo "Done with function...\n-----\n"; } function some_other_function() { echo "This is some other function, to ensure more than just one function works fine...\n"; } echo "After function declaration...\n"; echo "Calling function for the first time...\n"; print_something_multiple_times("This works!",10); echo "Returned from function call...\n"; echo "Calling the function for the second time...\n"; print_something_multiple_times("This like, really works and stuff...",3); echo "Returned from function call...\n"; some_other_function(); ?> --EXPECT-- Before function declaration... After function declaration... Calling function for the first time... ---- In function, printing the string "This works!" 10 times 0) This works! 1) This works! 2) This works! 3) This works! 4) This works! 5) This works! 6) This works! 7) This works! 8) This works! 9) This works! Done with function... ----- Returned from function call... Calling the function for the second time... ---- In function, printing the string "This like, really works and stuff..." 3 times 0) This like, really works and stuff... 1) This like, really works and stuff... 2) This like, really works and stuff... Done with function... ----- Returned from function call... This is some other function, to ensure more than just one function works fine...