Last active
April 18, 2017 10:16
-
-
Save panvid/1dec5124e00ea131edf60458f5e2170e to your computer and use it in GitHub Desktop.
Moments whenPHP sucks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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