Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
$a = 5;
$b = 5;
span class="sys-fun">echo ($a === $b);
?>
Answer : Option C
Explanation :
=== operator returns 1 if $a and $b are equivalent and $a and $b have the same type.
Be The First To Comment