PHP - Conditional Statements
What will be the output of this PHP code?
$value = 'b';
switch ($value) {
case 'a':
echo "Apple";
case 'b':
echo "Banana";
case 'c':
echo "Cherry";
break;
default:
echo "No fruit";
}