vote up 1 vote down star

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 context?

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.

OR if there's a better way to do it then what I'm proposing, please share with me (I'm new to PHP) Thanks!

eg.

class example
{
    var $apple;

    function example()//constructor
    {
        example::apple = "red" //this throws a parse error
    }

}
flag

2 Answers

vote up 4 vote down check

For brevity sake I will only offer the php 5 version:

class Example
{
    // Class Constant
    const APPLE = 'red';

    // Private static member
    private static $apple;

    public function __construct()
    {
        print self::APPLE . "\n";
        self::$apple = 'red';
    }
}
link|flag
1  
"Example::$apple = 'red';" Works if you are outside the scope of the Example class. – camomileCase Oct 7 at 1:34
1  
If $apple is public. – camomileCase Oct 7 at 1:35
Thanks Chris. the self:: in addition to declaring the variable as a private static was what I was looking for :) – justinl Oct 7 at 3:07
vote up 1 vote down

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();
link|flag
thanks lemon! this is also what I was looking for. – justinl Oct 7 at 3:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.