1
Reply

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

saurabh  singh

saurabh singh

Mar 18, 2015
466
0

    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.).

    saurabh singh
    March 18, 2015
    0