A switch Statement : switch statement « Statement « PHP






A switch Statement

 
<html>
<head><title>A switch Statement</title></head>
<body>
<div>
<?php
    $satisfied = "no";
    switch ( $satisfied ) {
      case "very":
        print "very";
        break;
      case "no":
        print "no";
        break;
      default:
        print "default";
    }
?>
</div>
</body>
</html>
  
  








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.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