comments.test 806 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. Comments
  2. -----
  3. <?php
  4. function justForIndentation()
  5. {
  6. // Some text
  7. # Some text
  8. /* Some text */
  9. /** Some text */
  10. /**
  11. * Some text.
  12. * Some more text.
  13. */
  14. /*
  15. * Some text.
  16. * Some more text.
  17. */
  18. /*
  19. Some text.
  20. Some more text.
  21. */
  22. /* Some text.
  23. More text. */
  24. /* Some text.
  25. More text.
  26. Even more text. */
  27. $foo;
  28. }
  29. -----
  30. function justForIndentation()
  31. {
  32. // Some text
  33. # Some text
  34. /* Some text */
  35. /** Some text */
  36. /**
  37. * Some text.
  38. * Some more text.
  39. */
  40. /*
  41. * Some text.
  42. * Some more text.
  43. */
  44. /*
  45. Some text.
  46. Some more text.
  47. */
  48. /* Some text.
  49. More text. */
  50. /* Some text.
  51. More text.
  52. Even more text. */
  53. $foo;
  54. }