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