How to refer to a static constant member variable in PHP

后端 未结 2 1112
心在旅途
心在旅途 2021-02-20 09:49

I have a class with member variables. What is the syntax in PHP to access the member variables from within the class when the class is being called from a static contex

2条回答
  •  温柔的废话
    2021-02-20 10:32

    Basically I want to call a class method (but not create a new object), but when the class method is called, I want a handful of static constant variables to be initialized that need to be shared among the different class methods.

    Try this

    class ClassName {
      static $var;
    
      function functionName() {
        echo self::$var = 1;
      }
    }
    
    ClassName::functionName();
    

提交回复
热议问题