Posted by Wayne on 06/14/06 15:18
On 14 Jun 2006 06:20:47 -0700, "Csaba Gabor" <danswer@gmail.com>
wrote:
>Why is it that in the following code, the third line with ($ie1==$ie2)
>prints "same" while the others all show "different"?
Well == means do these objects have all the same properties where as
=== means are these the same object instances. You pretty much always
want to use === with objects.
[Back to original message]
|