A
Q. What will be the output of the following PHP code ?
Code:
<?php
$t = 11;
if ($t = $t&0)
print $t;
else
break;
?>
$t = 11;
if ($t = $t&0)
print $t;
else
break;
?>
- Correct Answer - Option(D)
- Views: 20
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.