Return to heredoc_007.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests |
1.1 ! misho 1: --TEST-- ! 2: braced and unbraced complex variable replacement test (heredoc) ! 3: --FILE-- ! 4: <?php ! 5: ! 6: require_once 'nowdoc.inc'; ! 7: ! 8: print <<<ENDOFHEREDOC ! 9: This is heredoc test #s $a, {$b}, {$c['c']}, and {$d->d}. ! 10: ! 11: ENDOFHEREDOC; ! 12: ! 13: $x = <<<ENDOFHEREDOC ! 14: This is heredoc test #s $a, {$b}, {$c['c']}, and {$d->d}. ! 15: ! 16: ENDOFHEREDOC; ! 17: ! 18: print "{$x}"; ! 19: ! 20: ?> ! 21: --EXPECT-- ! 22: This is heredoc test #s 1, 2, 3, and 4. ! 23: This is heredoc test #s 1, 2, 3, and 4.