mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
26 lines
391 B
PHP
26 lines
391 B
PHP
--TEST--
|
|
Inline HTML should not be split at partial PHP tags
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
|
|
--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)
|
|
}
|
|
}
|