Return to heredoc_018.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests |
1.1 ! misho 1: --TEST-- ! 2: Testing heredoc with tabs before identifier ! 3: --FILE-- ! 4: <?php ! 5: ! 6: $heredoc = <<< A ! 7: ! 8: foo ! 9: ! 10: A; ! 11: A; ! 12: ! 13: var_dump(strlen($heredoc) == 9); ! 14: ! 15: ?> ! 16: --EXPECT-- ! 17: bool(true)