1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00
Files
archived-php-src/ext/tokenizer/tests/token_get_all_variation18.phpt
T
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

116 lines
1.4 KiB
PHP

--TEST--
Test token_get_all() function : usage variations - with HTML code
--EXTENSIONS--
tokenizer
--FILE--
<?php
/*
* Testing token_get_all() with source string containing HTML code with PHP
* HTML tags are considered to be T_INLINE_HTML(311)
*/
echo "*** Testing token_get_all() : 'source' string with HTML tags ***\n";
$source = '
<html>
<body>
Testing HTML
</body>
</html>"
<?php
echo "php code with HTML";
?>';
var_dump( token_get_all($source));
echo "Done"
?>
--EXPECTF--
*** Testing token_get_all() : 'source' string with HTML tags ***
array(9) {
[0]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(50) "
<html>
<body>
Testing HTML
</body>
</html>"
"
[2]=>
int(1)
}
[1]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(6) "<?php
"
[2]=>
int(8)
}
[2]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(4) " "
[2]=>
int(9)
}
[3]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(4) "echo"
[2]=>
int(9)
}
[4]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) " "
[2]=>
int(9)
}
[5]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(20) ""php code with HTML""
[2]=>
int(9)
}
[6]=>
string(1) ";"
[7]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(1) "
"
[2]=>
int(9)
}
[8]=>
array(3) {
[0]=>
int(%d)
[1]=>
string(2) "?>"
[2]=>
int(10)
}
}
Done