Skip to content

Instantly share code, notes, and snippets.

@DASPRiD
Created December 3, 2011 02:23
Show Gist options
  • Save DASPRiD/1425786 to your computer and use it in GitHub Desktop.
Save DASPRiD/1425786 to your computer and use it in GitHub Desktop.
<?php
switch ($foo) {
case 'a':
$bar = 'a';
case 'b':
case 'c':
$foo = 'a';
break;
case 'd':
$foo = 'd';
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment