OOP =&
Posted: Sun Oct 02, 2005 9:10 am
hi, i was wondering what the difference between
and
similarly, whats the difference between
and
wouldnt $a and $b be the same in both cases?
thanks.
Code: Select all
$variable =& new ClassName();Code: Select all
$variable = new ClassName();Code: Select all
$a = 'blah';
$a =& $b;Code: Select all
$a = 'blah';
$b = $a;thanks.