How come a case option in a switch statement that does not contain a break automatically forwards to a next case without check?
try { switch($param) {
Because that's how it's done in C.