comments.phpt 230 B

123456789101112131415161718192021222324
  1. --TEST--
  2. #-style comments
  3. --FILE--
  4. #teste
  5. #teste2
  6. <?php
  7. #ahahah
  8. #ahhfhf
  9. echo '#ola'; //?
  10. echo "\n";
  11. echo 'uhm # ah'; #ah?
  12. echo "\n";
  13. echo "e este, # hein?";
  14. echo "\n";
  15. ?>
  16. --EXPECT--
  17. #teste
  18. #teste2
  19. #ola
  20. uhm # ah
  21. e este, # hein?