Omitting the break statement can be useful in some cases : switch statement « Statement « PHP






Omitting the break statement can be useful in some cases


<?
    $aColor = "Red";
    switch( $aColor )
    {
        case "red":
        case "Red":
            // The following prints if $aColor is
            // either "red" or "Red"
            print( "#FF0000<br>" );
            break;
        case "green":
        case "Green":
            print( "#00FF00<br>" );
            break;
        case "blue":
        case "Blue":
            print( "#0000FF<br>" );
            break;
        default:
            print( "other<br>" );
            break;
    }
?>
           
       








Related examples in the same category

1.Use the 'default' case
2.switch command for string value
3.A switch Statement for string
4.A switch Statement
5.Using the DEFAULT: statement to generate an error
6.Using switch to test for multiple values
7.Using the switch Statement
8.In a switch/case block, you specify what you are checking against, then give a list of possible values you want to handle.
9.Switch Statement
10.Switch and constants
11.Using endswitch to end the switch definition
12.What happens when there are no break keywords