php-src/Zend/tests/bug55445.phpt

9 lines
168 B
Plaintext
Raw Normal View History

--TEST--
Bug #55445 (Lexer error with short open tags)
--INI--
short_open_tag=0
--FILE--
<?php $u = "chris"; ?><p>Welcome <?= $u ?></p>
--EXPECT--
<p>Welcome chris</p>