xref: /PHP-5.5/tests/lang/short_tags.003.phpt (revision e967b0fe)
1--TEST--
2short_open_tag: On, asp_tags: On
3--INI--
4short_open_tag=on
5asp_tags=on
6--FILE--
7<?='this should get echoed'?>
8
9<%= 'so should this' %>
10
11<?php
12$a = 'This gets echoed twice';
13?>
14
15<?= $a?>
16
17<%= $a%>
18
19<? $b=3; ?>
20
21<?php
22   echo "{$b}";
23?>
24--EXPECT--
25this should get echoed
26so should this
27
28This gets echoed twice
29This gets echoed twice
30
313
32
33