Skip to content

Instantly share code, notes, and snippets.

@damiankloip
Created November 7, 2012 17:31
Show Gist options
  • Save damiankloip/4033097 to your computer and use it in GitHub Desktop.
Save damiankloip/4033097 to your computer and use it in GitHub Desktop.
<?php
$var = 'a';
switch ($var) {
case 'a':
if (FALSE) {
dpm('a');
}
case 'b':
dpm('b');
default:
dpm('default');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment