mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
9 lines
169 B
PHP
9 lines
169 B
PHP
--TEST--
|
|
Bug #55445 (Lexer error with short open tags)
|
|
--INI--
|
|
short_open_tag=0
|
|
--FILE--
|
|
<?php $u = "chris"; ?><p>Welcome <?= $u ?></p>
|
|
--EXPECTF--
|
|
<p>Welcome chris</p>
|