Discussion :: PHP - CS
-
What will be the output of the following PHP code ?
<?php
$a = "$winner";
$b = "$looser";
echo $a, $b;
?>
Answer : Option C
Explanation :
Since two backslashes are used together, a single backslash is printed on the screen and as $looser is not initialised only single backslash is printed.
Be The First To Comment