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-- Bug #76437 (token_get_all with TOKEN_PARSE flag fails to recognise close tag) --SKIPIF-- <?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php $tests = [ ['<?=$a?>', 0], ['<?php echo 2; ?>', 6], ["<?php echo 2; ?>\n", 6], ]; foreach ($tests as [$code, $index]) { $open_tag1 = token_get_all($code)[$index]; $open_tag2 = token_get_all($code, TOKEN_PARSE)[$index]; echo token_name($open_tag1[0]), ": \"$open_tag1[1]\" on line $open_tag1[2]\n"; var_dump($open_tag1 === $open_tag2); } ?> --EXPECT-- T_OPEN_TAG_WITH_ECHO: "<?=" on line 1 bool(true) T_CLOSE_TAG: "?>" on line 1 bool(true) T_CLOSE_TAG: "?> " on line 1 bool(true)