Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$i = 10;
$j = 0;
if ($i || ($j = $i + 10))
{
echo "true";
}
echo $j;
?>
Answer : Option B
Explanation :
In if condition when the first case is 1 and is an || operation then the second command is not executed.
Be The First To Comment