[PHP-DEV] Referrences

2002-06-03 Thread Michael Stolovitzsky
If I understand correctly, given $bar is an object $foo = $bar will copy entire contents of $bar into foo. Following question: what happens with $foo = new Foo? Does the object get created, copied into $foo and then destroyed, while the copy in $foo lives? In other words, is there a perform

[PHP-DEV] Funny message

2002-06-03 Thread Michael Stolovitzsky
Parse error: parse error, unexpected T_PAAMAYIM_NEKUDOTAYIM in [...] With all due respect to Hebrew humour, am I the only one who thinks that the above line is confusing to non-Israeli? ;) -- - Michael -- PHP Development Mailing List To unsubscribe, visit: http://www.

Re: [PHP-DEV] Referrences

2002-06-03 Thread Michael Stolovitzsky
Markus Fischer wrote: > On Mon, Jun 03, 2002 at 10:29:19AM +0300, Michael Stolovitzsky wrote : >> If I understand correctly, given $bar is an object >> >> $foo = $bar >> >> will copy entire contents of $bar into foo. Following question: what >> happens w