Usage of several equal-signs
In PHP, the triple equals sign (
===
) denotes identicalness,[6] meaning that not only do the two values evaluate to the same boolean value, they are also of the same data type. For instance, the expression 0 == false
is true, but 0 === false
is not, because the number 0 is an integer value (whereas false is a boolean).