Annotation of embedaddon/php/Zend/tests/heredoc_017.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Testinh heredoc syntax
        !             3: --FILE--
        !             4: <?php 
        !             5: 
        !             6: $a = <<<A
        !             7:        A;
        !             8: ;
        !             9:  A;
        !            10: \;
        !            11: A;
        !            12: 
        !            13: var_dump(strlen($a) == 12);
        !            14: 
        !            15: ?>
        !            16: --EXPECT--
        !            17: bool(true)

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