Using endswitch to end the switch definition : switch statement « Statement « PHP






Using endswitch to end the switch definition

 
<?
$action= 'ADD';
switch ($action):
    case "ADD":
       echo "Perform actions for adding.";
       break;
    case "MODIFY":
       echo "Perform actions for modifying.";
       break;
    case "DELETE":
       echo "Perform actions for deleting.";
       break;
    default:
       echo "Error: Action must be either ADD, MODIFY, or DELETE.";
endswitch;
?>
  
  








Related examples in the same category

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