Q. What will be the output of the following PHP code?
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";
}
?>
β
Correct Answer: (C)
I love arsenalI love manc