Is there garbage collection in PHP?

后端 未结 5 500
南笙
南笙 2020-11-27 16:32

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

相关标签:
5条回答
  • 2020-11-27 16:53

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

    0 讨论(0)
  • 2020-11-27 16:56

    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.

    0 讨论(0)
  • 2020-11-27 17:04

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

    0 讨论(0)
  • 2020-11-27 17:05

    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

    0 讨论(0)
  • 2020-11-27 17:10

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

    0 讨论(0)
提交回复
热议问题