Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$a = "$winner";
$b = "$looser";
echo $a, $b;
?>
Answer : Option D
Explanation :
As there is a backslash before $ it takes it as a string and not a variable therefore we get $looser as the output.
Be The First To Comment