fork download
  1. <?php
  2. $thesaurus = "big";
  3.  
  4. switch ($thesaurus) {
  5. case "big":
  6. echo "large,great,huge,fat";
  7. break;
  8. case "huge":
  9. echo "enormous,gigantic,big";
  10. break;
  11. case "gigantic":
  12. echo "huge,enormous";
  13. break;
  14. default:
  15. echo null; }
  16. ?>
  17.  
Success #stdin #stdout 0.02s 24348KB
stdin
Standard input is empty
stdout
large,great,huge,fat