Identical to.
This comparison operator returns TRUE if the first expression is identical to the second. The two expressions or variables have to be of the same type.
<?php
if (("5" == 5) && !("5" === 5)) {
print "\"5\" is equal but not identical to 5";
}
?> "5" is equal but not identical to 5 The identical operator requires that the types as well as the values are the same.