xref: /PHP-5.5/tests/lang/short_tags.004.phpt (revision 207e6792)
1--TEST--
2short_open_tag: Off, asp_tags: Off
3--INI--
4short_open_tag=off
5asp_tags=off
6--FILE--
7<%= 'so should this' %>
8
9<?php
10$a = 'This gets echoed twice';
11?>
12
13<?= $a?>
14
15<%= $a%>
16
17<? $b=3; ?>
18
19<?php
20   echo "{$b}";
21?>
22<?= "{$b}"?>
23--EXPECTF--
24<%= 'so should this' %>
25
26
27This gets echoed twice
28<%= $a%>
29
30<? $b=3; ?>
31
32
33Notice: Undefined variable: b in %s on line %d
34
35Notice: Undefined variable: b in %s on line %d
36