Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When should I use Static functions/classes/fields in PHP? What are some practical uses of it?

share|improve this question
If you are trying to write object oriented code: NEVER. – tereško Aug 11 '12 at 21:57

2 Answers

up vote 2 down vote accepted

you should not, it's rarely useful. common usage for statics are factory methods and singleton::instance()

factory:

class Point{
  private $x;
  private $y;

  public function __construct($x, $y){
    ...
  }

  static function fromArray($arr){
    return new Point($arr["x"], $arr["y"]);
  } 
}

singleton:

class DB{
  private $inst;

  private function __construct(){
    ...
  }

  static function instance(){
    if ($this->inst)
      return $this->inst;

    return $this->inst = new DB();
  }
}
share|improve this answer
2  
I agree it's mostly not necessary and harmful. I would add one case where it is usefull: to create a higher level language. Eg User::with100Points(). More can be found in the book Growing object oriented software guided by tests. – koen Apr 2 '11 at 7:44
@koen explain a bit more, how would User::with100points() work? – Click Upvote Apr 14 '11 at 19:45
@Click Upvote If you mean how it looks in code: class User { public function setPoints($points) { //set points } public static function with100points() { return new self(100); } }. User::with100points() is more readable than $user = new User(); $user->setPoints(100); You could create a special class for this DSLUser extends User { public static method with100points() {} }. There aren't that many opportunities to use this correctly in your code but in UnitTests you can make more use of it and your tests often become very clear. – koen Apr 15 '11 at 17:00

Usage of static methods in same in languages like Java/PHP.

One simple example can be that you want to use a variable across all instances of your class and any instance can change its value and you want it to get reflected in other instance as well.

   class Foo{
    static $count=0;
    public function incrementCount(){
    self::$count++;
    }

   public function getCount(){
    return self:$count;
   }
  }

Without static you can't set count value via one object and access it in others.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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