1
Reply

Difference between == and === operator in php. ?

saurabh  singh

saurabh singh

9y
487
0
Reply

    The == operator just checks to see if the left and right values are equal. But, the === operator (note the extra “=”) actually checks to see if the left and right values are equal, and also checks to see if they are of the same variable type (like whether they are both booleans, ints, etc.).