Not identical to.
This comparison operator returns TRUE if the first expression is not identical to the second. The two expressions or variables can differ in either value or type.
<?php
if ("5" !== 5) {
print "\"5\" is not identical to 5";
}
?> "5" is not identical to 5 The two expressions differ in type and are therefore not identical.