Skip to content

Instantly share code, notes, and snippets.

@mcuadros
Created May 7, 2013 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcuadros/5532049 to your computer and use it in GitHub Desktop.
Save mcuadros/5532049 to your computer and use it in GitHub Desktop.
#PHP odd: you can use any special char after a case like in PHP instead of ":", like a * a pipe, etc. Try it! "
<?php
//This is a valid PHP
switch (true) {
case 'semicolon'; //<-- Documented
false;
case 'asterisk'*
false;
case 'pipe'|
false;
case 'slash'/
false;
case 'plus'+
false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment