Skip to content

Instantly share code, notes, and snippets.

@panvid
Last active April 18, 2017 10:16
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 panvid/1dec5124e00ea131edf60458f5e2170e to your computer and use it in GitHub Desktop.
Save panvid/1dec5124e00ea131edf60458f5e2170e to your computer and use it in GitHub Desktop.
Moments whenPHP sucks
<?php
switch ('superCoolValue') {
case 'bla':
echo "is bla";
break;
case 'blu':
case 'bli':
default:
echo "is blu, bli or 'default'";
break;
case 'superCoolValue':
echo "is superCoolValue";
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment