Hi
Can any one brief me what is the difference between
$obj =& new Class();
AND
$obj = new Class();
Difference between
Moderator: General Moderators
Re: Difference between
Technically the first one is a reference and the second is a copy, but as both will be initialising a new instance there won't actually be any difference between them.