What will be the output of the following PHP code ?
<?php
$a = 10; $b = 10;
if ($a = 5)
$b--;
print $a;print $b--;
?>
<?php
$a = 10; $b = 10;
if ($a = 5)
$b--;
print $a;print $b--;
?>
A. 58
B. 59
C. 109
D. 108
Answer: Option B

Join The Discussion