For cleared or unset php arrays, are elements garbage collected?

后端 未结 3 1466
执笔经年
执笔经年 2021-01-13 06:26

if I unset an array, would its elements be garbage collected or freed up assuming they are not referenced in anywhere else? what if I simply do $array =new array();

3条回答
  •  终归单人心
    2021-01-13 06:45

    Check-out php < 5.3 garbage collection, do array values need to be set null or does setting the array = null orphan all its elements?, maybe that will help answer your question.

提交回复
热议问题