Identical operator in PHP
Identical operator in PHP is represented with three equal signs. Not identical operator in PHP is represented with explanation point and two equal signs.
Example of identical values is 5 is identical to 5, however 5 is not identical to 5.0. These are the same numerical values, however these are different data types.
Identical operator is not the same as comparison equal operator in PHP.
Comments
Post a Comment