Q. What will be the output of the following PHP code ?
Code:
<?php
$t = 11;
if ($t = $t&0)
print $t;
else
break;
?>
β
Correct Answer: (D)
Error
<?php
$t = 11;
if ($t = $t&0)
print $t;
else
break;
?>
You must be Logged in to update hint/solution