Hi,
If I write
$someobject = new SomeObject;
will I have 2 instances in memory,
one of which I cannot actually access?
Will
$someobject =& new SomeObject;
remedy that, or didn't I understand
it correctly?
Thanks,
Jos
If I write
$someobject = new SomeObject;
will I have 2 instances in memory,
one of which I cannot actually access?
Will
$someobject =& new SomeObject;
remedy that, or didn't I understand
it correctly?
Thanks,
Jos