1. <?php
  2. // a made up function to demonstate the various aspects of the codeTransform() function
  3. fooBar($a, $b)
  4. {
  5. // here's a comment
  6. if ($a == $b)
  7. {
  8. print 'toodle-whoopsey';
  9. }
  10. /* and here's a multi-line comment
  11. it goes on...
  12. and on...
  13. and then ends */
  14. else
  15. {
  16. if ($b == 10)
  17. {
  18. // now we're three tabs in
  19. print "RAAAAAA! I'M A LION!";
  20. }
  21. }
  22. }
  23. ?>
  24. Download this code: /code/456.txt