As far as I know (which is very little) , there are two ways, given:
$var = new object()
Then:
// Method 1: Set to null
$var = null;
// Method 2: Unset
unset($var);
Other better method? Am I splitting hairs here?
Cheers!
|
As far as I know (which is very little) , there are two ways, given:
Then:
Other better method? Am I splitting hairs here? Cheers!
| |||
|
show 3 more comments
feedback
|
|
You're looking for But take into account that you can't explicitly destroy an object. It will stay there, however if you unset the object and your script pushes PHP to the memory limits the objects not needed will be garbage collected. I would go with That said do keep in mind that PHP always destroys the objects as soon as the page is served. So this should only be needed on really long loops and/or heavy intensive pages. | ||||
|
feedback
|
|
they both destroy the object, but the after effect is that | |||
feedback
|
|
I would go with unset because it might give the garbage collector a better hint so that the memory can be available again sooner. Be careful that any things the object points to either have other references or get unset first or you really will have to wait on the garbage collector since there would then be no handles to them. | |||||||||
feedback
|
unset()removes the variable from its symbol table. – BoltClock♦ Jan 10 at 4:28