Is there garbage collection in PHP?
garbage-collection, memory-management, php
Solution
Yes there is, here's a nice article describing its pitfalls. In PHP > 5.3.0, there is also the gc_enable function.
Problem
I know that in PHP you don't have to free memory. Is it reached by garbage collector?