What will be the output of the following PHP code ?
<?php
$b = 1;
switch(print $b)
{
case 2:
print "hello";
break;
case 1:
print "hi";
break;
default:
print "hi1";
}
?>
<?php
$b = 1;
switch(print $b)
{
case 2:
print "hello";
break;
case 1:
print "hi";
break;
default:
print "hi1";
}
?>A. 1hello
B. 1hi
C. 1hi1
D. error
Answer: Option B

Join The Discussion