I am trying to convert a PHP 5.3 library to work on PHP 5.2. The main thing standing in my way is the use of late static binding like return new static($options); , if I convert this to return new self($options) will I get the same results?

What is the difference between new self and new static?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 27 down vote accepted

will I get the same results?

Not really. I don't know of a workaround for PHP 5.2, though.

What is the difference between new self and new static?

new self() refers to the same class whose method the new operation takes place in.

new static() in PHP 5.3's late static binding refers to whatever class in the hierarchy which you call the method on.

In the following example, B inherits both methods from A. self is bound to A because it's defined in A's implementation of the first method, whereas static is bound to the called class (also see get_called_class()).

class A {
    public static function get_A() {
        return new self();
    }

    public static function get_me() {
        return new static();
    }
}

class B extends A {}

echo get_class(B::get_A());  // A
echo get_class(B::get_me()); // B
echo get_class(A::get_me()); // A
link|improve this answer
makes sense. I think the best bet is to pass the class name to the function that is using late static binding and then do return new $className($options); – Mike Mar 4 '11 at 18:25
2  
You don't have to "pass" the class name, you can always do get_called_class(), which is effectively the same as __CLASS__, but LSB compatible. – shadowhand Mar 5 '11 at 0:13
1  
get_called_class does not exist in <PHP5.3. Hence if you want to get the class name of the instantiated object in PHP5.2 This function does not help when trying to convert a library from PHP 5.3 to PHP 5.2 – txwikinger Sep 21 '11 at 15:29
then static like get_called_class(), and self like get_class()? thanks, mv. – marce Oct 6 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

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