Annotation of embedaddon/php/Zend/tests/heredoc_009.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Torture the T_END_HEREDOC rules (heredoc)
                      3: --FILE--
                      4: <?php
                      5: 
                      6: require_once 'nowdoc.inc';
                      7: 
                      8: print <<<ENDOFHEREDOC
                      9: ENDOFHEREDOC    ;
                     10:     ENDOFHEREDOC;
                     11: ENDOFHEREDOC    
                     12:     ENDOFHEREDOC
                     13: $ENDOFHEREDOC;
                     14: 
                     15: ENDOFHEREDOC;
                     16: 
                     17: $x = <<<ENDOFHEREDOC
                     18: ENDOFHEREDOC    ;
                     19:     ENDOFHEREDOC;
                     20: ENDOFHEREDOC    
                     21:     ENDOFHEREDOC
                     22: $ENDOFHEREDOC;
                     23: 
                     24: ENDOFHEREDOC;
                     25: 
                     26: print "{$x}";
                     27: 
                     28: ?>
                     29: --EXPECTF--
                     30: Notice: Undefined variable: ENDOFHEREDOC in %s on line %d
                     31: ENDOFHEREDOC    ;
                     32:     ENDOFHEREDOC;
                     33: ENDOFHEREDOC    
                     34:     ENDOFHEREDOC
                     35: ;
                     36: 
                     37: Notice: Undefined variable: ENDOFHEREDOC in %s on line %d
                     38: ENDOFHEREDOC    ;
                     39:     ENDOFHEREDOC;
                     40: ENDOFHEREDOC    
                     41:     ENDOFHEREDOC
                     42: ;

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