Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that in PHP you don't have to free memory. Is it reached by garbage collector?

share|improve this question

5 Answers

up vote 22 down vote accepted

Yes there is, here's a nice article describing its pitfalls. In PHP > 5.3.0, there is also the gc_enable function.

share|improve this answer
1  
One gotcha not included in that article is anonymous functions, created with create_function(). These are not subject to garbage collection. – Dave Lancea Jun 29 '11 at 13:59

Yes. There is also session cleanup done by the garbage collector.

share|improve this answer

PHP has a combination of garbage collection and reference counting. The latter is the main mode of managing memory, with the garbage collector picking up the pieces that the ref counter misses (circular references). Before 5.3, php only had ref-counting, and even in 5.3 it's the still how memory will usually be freed.

share|improve this answer

Since 5.3.0 you can force garbage collection by using gc_collect_cycles function.

share|improve this answer

since 5.3.0 there is garbage collection support. please check this very informative article from php.net http://php.net/manual/en/features.gc.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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