1.

What will be the output of the following PHP code ? <?php $x = 4; $y = 3; function fun($x, $y) { $z = $x + $y / $y + $x; echo "$z"; } echo $x; echo $y; echo $z; fun(3, 4); ?>

A. 437
B. 439
C. 349
D. 347
Answer» B. 439


Discussion

No Comment Found