I am trying to display the result of the comparison operation ($a > $b)
which does not display anything for the below code, whereas the operation ($a < $b)
displays the result 1
.
I am wondering why the first operation does not return 0
as it is false
?
<?php
$a = 1;
$b = 5;
print ($a > $b);
echo "Output";
print ($a < $b);
?>