w3resource

PHP Switch statement

Description

The control statement which allows us to make a decision from the number of choices is called a switch-case-default. It is almost similar to a series of if statements on the same expression.

Syntax:

switch (expression )
{
case constant1:
 execute the statement;
 break;
case constant2:
 execute the statement;
 break;
case constant3:
 execute the statement;
 break;
.........
default:
 execute the statement;
}

The expression following the keyword switch can be a variable or any other expression like an integer, a string, or a character. Each constant in  each case must be different from all others.

When we run a program containing the switch statement at first the expression following the keyword switch is evaluated. The value it gives is then matched one by one against the constant values that follow the case statements. When a match is found the program executes the statements following that case. If no match is found with any of the case statements, only the statements following the default are executed.  

Example:

In the following example $xint is equal to 3, therefore switch statement executes the third echo statement.

<?php
$xint=3;
switch($xint) {
case 1:
echo "This is case No 1.";
break;
case 2:
echo "This is case No 2.";
break;
case 3:
echo "This is case No 3.";
break;
case 4:
echo "This is case No 4.";
break;
default:
echo "This is default.";
}
?>

Output:

This is case No 3.

View the example in the browser

Pictorial presentation of switch loop

php-while-loop

 

Previous: continue statement
Next: declare statement



Follow us on Facebook and Twitter for latest update.