Static variables in PHP

前端 未结 5 1367
你的背包
你的背包 2020-12-16 09:20

I have found different information regarding static variables in PHP but nothing that actually explains what it is and how it really works.

I have read that when us

5条回答
  •  再見小時候
    2020-12-16 09:58

    A static variable in a function is initialized only in the first call of that function in its running script.

提交回复
热议问题