Skip to content

Instantly share code, notes, and snippets.

@jiskanulo
Created March 20, 2015 08:49
Show Gist options
  • Save jiskanulo/a11987953d743b44da1b to your computer and use it in GitHub Desktop.
Save jiskanulo/a11987953d743b44da1b to your computer and use it in GitHub Desktop.
What will be displayed?
<?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