On Sat, 1 Jun 2003, Jackson Miller wrote:
> Is it possible to reference two instances of an object at once with a
> single variable name while retaining the ability to reference the
> objects seperately?

No chance.  Well, you could hack it with some really fancy object
overloading, but in general, no, you cannot have a single reference that
references two distinct objects.  References work the other way around.
Given a single distinct object, you can create multiple equivalent
references to it.

-Rasmus

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to