Equal and Identical comparison operators in PHP / == (equal) or === (identical)
Equal and Identical comparison operators in PHP When comparing values in PHP for equality you can use either the == (equal) operator or the === (identical) operator. Do you know, what is the difference? Very simple the == operator just checks to see if the left and right values are equal. But, the === operator… (1 comment)