How comparison of objects is done in PHP5?

When using the comparison operator (==), object variables are compared in a simple manner, namely: Two object instances are equal if they have the same attributes and values, and are instances of the same class.

When using the identity operator (===), object variables are identical if and only if they refer to the same instance of the same class.

Leave a Reply

Your email address will not be published. Required fields are marked *