Partly because, from what I can tell, PHP object comparison works like:
1) Both objects have the exact same attributes and values
2) Both objects are of the same class
Using the === operator would yield TRUE but I have an instance where more than one object may very well have the same type, attributes and values...
So what I need then is access to an objects instance handle...
Doesn't look like PHP supports this???
I have a work around already figured out, soooo all I want to know is, does PHP have native access to an object instance handle?
Does every object in PHP have a magic property or something that give that instance total uniqueness???
Anyone know of anything like that/this in PHP4???
Cheers