mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
26 lines
314 B
PHP
26 lines
314 B
PHP
--TEST--
|
|
Inline HTML should not be split at partial PHP tags
|
|
--EXTENSIONS--
|
|
tokenizer
|
|
--INI--
|
|
short_open_tag=0
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(token_get_all(<<<'PHP'
|
|
Foo<?phpBar
|
|
PHP));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
array(1) {
|
|
[0]=>
|
|
array(3) {
|
|
[0]=>
|
|
int(%d)
|
|
[1]=>
|
|
string(11) "Foo<?phpBar"
|
|
[2]=>
|
|
int(1)
|
|
}
|
|
}
|