Created
March 20, 2015 08:49
-
-
Save jiskanulo/a11987953d743b44da1b to your computer and use it in GitHub Desktop.
What will be displayed?
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 | |
$key = 0; | |
switch($key) { | |
case 'one': echo 'one'; break; | |
case 'two': echo 'two'; break; | |
case 'three': echo 'tree'; break; | |
default: echo 'other'; break; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment