Annotation of embedaddon/php/tests/lang/short_tags.003.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: short_open_tag: On, asp_tags: On
                      3: --INI--
                      4: short_open_tag=on
                      5: asp_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--
                     25: this should get echoed
                     26: so should this
                     27: 
                     28: This gets echoed twice
                     29: This gets echoed twice
                     30: 
                     31: 3
                     32: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>