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!

link|improve this question

76% accept rate
10  
Have you considered a 20 Watt Phased Plasma Rifle? – paxdiablo Jan 10 at 4:10
3  
I have, but Amazon was out of stock... – PandemoniumSyndicate Jan 10 at 4:15
1  
You are wrong, neither of those lines "destroys" the object. PHP manages your memory for you. You can't destroy objects. They'll be automatically garbage collected for you. Your premis is fundamentally incorrect and so is every answer posted so far; voting to close this question as it is not useful. – meagar Jan 10 at 4:17
Ah, hmm, then I guess my question is the best way to handle me not wanting them to stick around anymore cause they're not my friends anymore. – PandemoniumSyndicate Jan 10 at 4:18
1  
@PandemoniumSyndicate: The only difference is that unset() removes the variable from its symbol table. – BoltClock Jan 10 at 4:28
show 3 more comments
feedback

3 Answers

up vote 0 down vote accepted

You're looking for unset().

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 unset() as it seams to have better performance (not tested but documented on one of the comments from the PHP official manual).

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.

link|improve this answer
feedback

they both destroy the object, but the after effect is that $var is defined or not defined. Unless you need $var for another purpose, it would be best to use unset($var)

link|improve this answer
They destroy the (presumably only) reference to the object, then the object gets GCed. – BoltClock Jan 10 at 4:14
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.

link|improve this answer
A better hint...? – BoltClock Jan 10 at 4:14
Unless you actually have sources to back up your answers, you probably shouldn't post what you think "might" happen. It's not useful and leads to this sort of misinformation being taken as truth and repeated. – meagar Jan 10 at 4:24
1  
@meagar that is the exact reason why I linked to the official manual page where, in the comments, there is a sample test comparing unset() to null. – Frankie Jan 10 at 4:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.