unset variable in php

前端 未结 5 1799
执念已碎
执念已碎 2021-01-11 16:16

I just read about unset variable through php manual.

The php manual says \"unset() destroys the specified variables\"

This def seems per

5条回答
  •  广开言路
    2021-01-11 16:26

    Inside a function, variable names referencing static variables are just that.. references. In effect, unset destroys the reference.

提交回复
热议问题