Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<?php
class Test [
    public function __construct {
        self::runTest();
        Test::runTest();
    };

    public static function runTest() {
        echo "Test running";
    }

}
// echoes 2x "Test running"
new Test();
?>

Is there any difference between self::runTest() and Test::runTest()? And if so, which one should I use?

self::runTest() when calling the method within the class and Test::runTest() when outside the class?

share|improve this question
self::runTest() when calling the method within the class and Test::runTest() when outside the class? - yes – Bogdan Burim Jan 21 at 13:40
1  
Also check out static – One Trick Pony Jan 21 at 13:41

3 Answers

up vote 2 down vote accepted

Here's a bit of example code to show what's happening:

class A {
  function __construct(){
     echo get_class($this),"\n"; 
     echo self::tellclass();
     echo A::tellclass();
  }

  static function tellclass(){
    echo __METHOD__,' ', __CLASS__,"\n";
  }

}

class B extends A {
}

class C extends A{
    function __construct(){
        echo "parent constructor:\n";
        parent::__construct();
        echo "self constructor:\n";
        echo get_class($this),"\n";
        echo self::tellclass();
        echo C::tellclass();
    }

    static function tellclass(){
        echo __METHOD__, ' ', __CLASS__,"\n";
    }
}

$a= new A;
// A
//A::tellclass A
//A::tellclass A

$b= new B;
//B
//A::tellclass A
//A::tellclass A

$c= new C;

//parent constructor:
//C    
//A::tellclass A
//A::tellclass A

//self constructor:
//C
//C::tellclass C
//C::tellclass C

The take-away point is that A::tellclass() always calls the tellclass method defined in A. But self::tellclass() allows child classes to use their own version of tellclass() if they have one. As @One Trick Pony notes, you should also check out late static binding: http://ca2.php.net/manual/en/language.oop5.late-static-bindings.php

share|improve this answer

you should call self::runTest() from inside the class methods and Test::runTest() outside of the class methods

share|improve this answer

self::runTest() when calling the method within the class and Test::runTest() when outside the class?

exactly!

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.