Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
$team = "arsenal";
switch ($team)
{
case "manu":
echo "I love man u";
case "arsenal":
echo "I love arsenal";
case "manc":
echo "I love manc";
}
?>
Answer : Option C
Explanation :
If a break statement isn’t present, all subsequent case blocks will execute until a break statement is located.
Be The First To Comment