"/>
<?php$one = "one";$two = "one";print($one == $two);?>
<?php
$one = "one";
$two = "one";
print($one == $two);
?>
true
false
1
error
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
Since both the strings are equal the result 1 is printed on the screen.
Be The First To Comment