Discussion :: PHP - CS
-
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);
?>
Answer : Option A
Explanation :
It is same as above but the value passed into the function is 3,4 and not 4,3. Therefore the difference in answer.
Be The First To Comment