菜谱项目

comments.test 890B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. }
  55. -----
  56. <?php
  57. function test()
  58. {
  59. // empty
  60. }
  61. -----
  62. function test()
  63. {
  64. // empty
  65. }