Return to comments.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / lang |
1.1 misho 1: --TEST-- 2: #-style comments 3: --FILE-- 4: #teste 5: #teste2 6: <?php 7: 8: #ahahah 9: #ahhfhf 10: 11: echo '#ola'; //? 12: echo "\n"; 13: echo 'uhm # ah'; #ah? 14: echo "\n"; 15: echo "e este, # hein?"; 16: echo "\n"; 17: 18: ?> 19: --EXPECT-- 20: #teste 21: #teste2 22: #ola 23: uhm # ah 24: e este, # hein?