Before you tell me to read the manual, check out the php.net documentation for this function:

Warning
This function is currently not documented; only its argument list is available.

That was helpful!

This page explains that it enables garbage collection for cyclic references. Where and when is this useful? Could someone show me an example of its use? Preferably an example where a cyclic reference is created and then collected...

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

gc_enable is only needed if you call gc_disable. There is really no sane reason to do this, as that would cause cyclic references to not be garbage collected (like pre-5.3, when the cyclic GC did not exist).

PHP's garbage collector works by reference counting. You can think of a variable as a "pointer" to an object. When an object has no pointers to it, it is "dead" because nothing can reach it, so it is garbage collected.

//one thing points to the Foo object
$a = new Foo();

//now two things do
$b = $a;

//now only $b points to it
$a = null;

//now nothing points to Foo, so php garbage collects the object
$b = null;

Consider this though:

$a = new Foo();
$b = new Bar();
$b->foo = $a;
$a->bar = $b;

$a = $b = null;

At this point nothing is holding on to $a or $b except the objects themselves. This is a cyclic reference, and in previous versions of php (< 5.3), would not be collected. The cyclic collector in 5.3 can now detect this and clean up these objects.

link|improve this answer
So what you're saying is that this is on by default, and therefore I need not worry about it unless for some forsaken reason I turn it off with gc_disable ? – Stephen Jan 17 '11 at 16:38
@Stephen: Yes, exactly. There is honestly no reason to turn this feature off. The only way cyclic references can be collected is when it's on. – ryeguy Jan 17 '11 at 16:43
feedback

There is a full chapter on Garbage Collection in the PHP Manual explaining this:

I usually try not to just link offsite, but feel it's too much to summarize.

link|improve this answer
1  
Excellent... This should really be linked to in the function documentation I referenced. – Stephen Jan 17 '11 at 16:52
@Stephen there is also the (brief) description for zend.enable_gc in the ini section which lists it as enabled by default. – Gordon Jan 17 '11 at 16:58
feedback

Your Answer

 
or
required, but never shown

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