What's the PHP equivalent of a static variable in other languages?

后端 未结 6 908
逝去的感伤
逝去的感伤 2021-02-09 07:03

I\'m wondering if PHP has a type of variable in classes that functions like static in other languages. And by that I mean all objects of the same class use the same variable and

6条回答
  •  失恋的感觉
    2021-02-09 07:35

    I don't see why making the variable static doesn't work for what you described (but it has nothing to do with the keyword final)?

    
    

提交回复
热议问题