#6 - Equal and Identical Operators
Equal operator == returns true if the variables being compared have the same values. The identical operator === returns true if the variable has the same values and same data types.
xxxxxxxxxx11
<?php $a =  123;$b = "123"; //Output: falseecho $a === $b; //Output: trueecho $a == $b;?>OUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment



