Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$x = 4;
$y = 3;
$z = 1;
echo "$x = $x + $y + $z";
?>
Answer : Option A
Explanation :
Again since the variables are inside double quotes we get this result.
Be The First To Comment