Advertisement
ujiajah1

php endswitch

Aug 20th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title></title>
  5.     </head>
  6.     <body>
  7.     <?php
  8.     switch ($i):
  9. case 0:
  10. echo '$i is 0.';
  11. break;
  12. case 1:
  13. case 2:
  14. case 3:
  15. case 4:
  16. case 5:
  17. echo '$i is somewhere between 1 and 5.';
  18. break;
  19. case 6:
  20. case 7:
  21. echo '$i is either 6 or 7.';
  22. break;
  23. default:
  24. echo "I don't know how much \$i is.";
  25. endswitch;
  26. }
  27.     ?>
  28.     </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement