Skip to content

Instantly share code, notes, and snippets.

@ear1grey
Created November 17, 2011 08:59
Show Gist options
  • Save ear1grey/1372741 to your computer and use it in GitHub Desktop.
Save ear1grey/1372741 to your computer and use it in GitHub Desktop.
Example UoP
switch ($_GET['filter']) {
case 0:
// do stuff;
break;
case "none":
// do otherStuff;
break;
}
// case 0: triggers even when $_GET['filter'] evaluates to "none"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment