<?php const FOO = 30; $foo = 5; $nested = 'nested'; switch ($foo) { case 10; case 20; echo $foo; break; case 'foo'; switch ($nested) { case 'nested' /*comment*/ ; break; default; break; } break; case FOO; { echo $foo; break; } default; echo 'default'; break; }
You have javascript disabled. You will not be able to edit any code.