Search code examples
phpmemory-managementgarbage-collection

Is there garbage collection in PHP?


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


Solution

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