Posted by "Chris Boget" on 11/17/05 17:35
> why not just do:
> unset($dbObject);
We were using unset() for the longest time but found it doesn't
seem to free up the memory.
>> $dbObject &= new IPI_OfficeDetailsInterface();
> so you want to do a bitwise AND on a non-existant variable and a newly
> creately object??
> maybe you meant to do:
> $dbObject =& new IPI_OfficeDetailsInterface();
You are right. My original email contained a typo. It should have
been '=&' as that is what is in our code.
thnx,
Chris
[Back to original message]
|