In PHP, how is variable scope handled in switch statements?
For instance, take this hypothetical example:
$someVariable = 0; switch($something) {
It will print 1 or 2 if you change the value of $someVariable in the switch statement, and 0 if you don't.
$someVariable