fork download
  1. <?php
  2.  
  3. //Single Line Comment
  4.  
  5. # Shell style Single Line Comment
  6.  
  7. /*
  8. This is a Multiline Comment
  9. which spawns many lines.
  10.   */
  11.  
  12. echo "You should comment your code.";
  13. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
You should comment your code.