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 /
ext /
tokenizer /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
001.phpt
5.86
KB
-rw-rw-r--
2022-10-31 11:36
002.phpt
10.57
KB
-rw-rw-r--
2022-10-31 11:36
003.phpt
747
B
-rw-rw-r--
2022-10-31 11:36
bad_character.phpt
1.12
KB
-rw-rw-r--
2022-10-31 11:36
bug26463.phpt
1.8
KB
-rw-rw-r--
2022-10-31 11:36
bug54089.phpt
3.49
KB
-rw-rw-r--
2022-10-31 11:36
bug60097.phpt
1.3
KB
-rw-rw-r--
2022-10-31 11:36
bug67395.phpt
398
B
-rw-rw-r--
2022-10-31 11:36
bug76437.phpt
679
B
-rw-rw-r--
2022-10-31 11:36
bug76991.phpt
721
B
-rw-rw-r--
2022-10-31 11:36
invalid_large_octal_with_underscores.phpt
405
B
-rw-rw-r--
2022-10-31 11:36
invalid_octal_dnumber.phpt
173
B
-rw-rw-r--
2022-10-31 11:36
no_inline_html_split.phpt
391
B
-rw-rw-r--
2022-10-31 11:36
parse_errors.phpt
1.2
KB
-rw-rw-r--
2022-10-31 11:36
php_tag_only.phpt
426
B
-rw-rw-r--
2022-10-31 11:36
php_tag_only_2.phpt
426
B
-rw-rw-r--
2022-10-31 11:36
token_get_all_TOKEN_PARSE_000.phpt
355
B
-rw-rw-r--
2022-10-31 11:36
token_get_all_TOKEN_PARSE_001.phpt
1.29
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_TOKEN_PARSE_002.phpt
1013
B
-rw-rw-r--
2022-10-31 11:36
token_get_all_basic.phpt
1.65
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_heredoc_nowdoc.phpt
7.45
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation10.phpt
9.16
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation11.phpt
13.1
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation12.phpt
6.84
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation13.phpt
13.38
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation14.phpt
3.81
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation15.phpt
8.73
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation16.phpt
11.4
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation17.phpt
6.99
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation18.phpt
1.63
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation19.phpt
1.27
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation2.phpt
5.3
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation3.phpt
6.75
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation4.phpt
8.65
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation5.phpt
9.14
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation6.phpt
4.62
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation7.phpt
3.23
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation8.phpt
9.69
KB
-rw-rw-r--
2022-10-31 11:36
token_get_all_variation9.phpt
5.24
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Test token_get_all() function : usage variations - with logical operators --SKIPIF-- <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) * Description: splits the given source into an array of PHP languange tokens * Source code: ext/tokenizer/tokenizer.c */ /* * Passing 'source' argument with different logical operators to test them for tokens * and - T_AND_LOGICAL_AND(265), * or - T_LOGICAL_OR(263), * xor - T_LOGICAL_XOR(264), * && - T_BOOLEAN_AND(279), * || - T_BOOLEAN_OR(278) */ echo "*** Testing token_get_all() : 'source' string with different logical operators ***\n"; // logical operators : 'and', 'or', 'xor', '&&', '||' $source = array ( '<?php $a = 1 and 024; ?>', '<?php $b = $b or 0X1E; ?>', '<?php $c = $a xor $b; ?>', '<?php $a = $b && 2; ?>', '<?php $b = $b || 1; ?>' ); for($count = 0; $count < count($source); $count++) { echo "-- Iteration ".($count + 1)." --\n"; var_dump( token_get_all($source[$count])); } echo "Done" ?> --EXPECTF-- *** Testing token_get_all() : 'source' string with different logical operators *** -- Iteration 1 -- array(13) { [0]=> array(3) { [0]=> int(%d) [1]=> string(6) "<?php " [2]=> int(1) } [1]=> array(3) { [0]=> int(%d) [1]=> string(2) "$a" [2]=> int(1) } [2]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [3]=> string(1) "=" [4]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [5]=> array(3) { [0]=> int(%d) [1]=> string(1) "1" [2]=> int(1) } [6]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [7]=> array(3) { [0]=> int(%d) [1]=> string(3) "and" [2]=> int(1) } [8]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [9]=> array(3) { [0]=> int(%d) [1]=> string(3) "024" [2]=> int(1) } [10]=> string(1) ";" [11]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [12]=> array(3) { [0]=> int(%d) [1]=> string(2) "?>" [2]=> int(1) } } -- Iteration 2 -- array(13) { [0]=> array(3) { [0]=> int(%d) [1]=> string(6) "<?php " [2]=> int(1) } [1]=> array(3) { [0]=> int(%d) [1]=> string(2) "$b" [2]=> int(1) } [2]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [3]=> string(1) "=" [4]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [5]=> array(3) { [0]=> int(%d) [1]=> string(2) "$b" [2]=> int(1) } [6]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [7]=> array(3) { [0]=> int(%d) [1]=> string(2) "or" [2]=> int(1) } [8]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [9]=> array(3) { [0]=> int(%d) [1]=> string(4) "0X1E" [2]=> int(1) } [10]=> string(1) ";" [11]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [12]=> array(3) { [0]=> int(%d) [1]=> string(2) "?>" [2]=> int(1) } } -- Iteration 3 -- array(13) { [0]=> array(3) { [0]=> int(%d) [1]=> string(6) "<?php " [2]=> int(1) } [1]=> array(3) { [0]=> int(%d) [1]=> string(2) "$c" [2]=> int(1) } [2]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [3]=> string(1) "=" [4]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [5]=> array(3) { [0]=> int(%d) [1]=> string(2) "$a" [2]=> int(1) } [6]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [7]=> array(3) { [0]=> int(%d) [1]=> string(3) "xor" [2]=> int(1) } [8]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [9]=> array(3) { [0]=> int(%d) [1]=> string(2) "$b" [2]=> int(1) } [10]=> string(1) ";" [11]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [12]=> array(3) { [0]=> int(%d) [1]=> string(2) "?>" [2]=> int(1) } } -- Iteration 4 -- array(13) { [0]=> array(3) { [0]=> int(%d) [1]=> string(6) "<?php " [2]=> int(1) } [1]=> array(3) { [0]=> int(%d) [1]=> string(2) "$a" [2]=> int(1) } [2]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [3]=> string(1) "=" [4]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [5]=> array(3) { [0]=> int(%d) [1]=> string(2) "$b" [2]=> int(1) } [6]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [7]=> array(3) { [0]=> int(%d) [1]=> string(2) "&&" [2]=> int(1) } [8]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [9]=> array(3) { [0]=> int(%d) [1]=> string(1) "2" [2]=> int(1) } [10]=> string(1) ";" [11]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [12]=> array(3) { [0]=> int(%d) [1]=> string(2) "?>" [2]=> int(1) } } -- Iteration 5 -- array(13) { [0]=> array(3) { [0]=> int(%d) [1]=> string(6) "<?php " [2]=> int(1) } [1]=> array(3) { [0]=> int(%d) [1]=> string(2) "$b" [2]=> int(1) } [2]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [3]=> string(1) "=" [4]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [5]=> array(3) { [0]=> int(%d) [1]=> string(2) "$b" [2]=> int(1) } [6]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [7]=> array(3) { [0]=> int(%d) [1]=> string(2) "||" [2]=> int(1) } [8]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [9]=> array(3) { [0]=> int(%d) [1]=> string(1) "1" [2]=> int(1) } [10]=> string(1) ";" [11]=> array(3) { [0]=> int(%d) [1]=> string(1) " " [2]=> int(1) } [12]=> array(3) { [0]=> int(%d) [1]=> string(2) "?>" [2]=> int(1) } } Done