PHP 5.2 Equivalent to Late Static Binding (new static)?
Asked Answered
E

1

5

I am trying to make a script that is built for php 5.3 work on a php 5.2 server. The script uses a lot of late static binding like:

return new static($options);

What is the equivalent to this in php 5.2? would it be new self somehow? Or is it not possible to achieve the same effect...

Thanks

EDIT:

Here is a related question New self vs. new static

Juts trying to wrap my head around this late static binding stuff...

Ecclesiastic answered 4/3, 2011 at 16:24 Comment(3)
There's no equivalent I'm afraid, late static binding was only introduced in PHP 5.3.Limitless
This looks like singletonitis :XPretorius
Like @Limitless said, there is no equivalent. Maybe get_class() can help you to achieve a similar result?Clari
P
-1

I think the only way is to pass by a protected static method that build your singleton and a public static method that defines the class to use. You can "emulate" it by using the get_class function over $this

class ParentClass{
    protected static function getInstance2($className){
         //some stuffs here
         return new $className();
    }
    public static function getInstance(){
        return self::getInstance2(get_class(self));
    }
}
class ChildClass extends ParentClass{
    public static function getInstance(){
        return self::getInstance2(get_class(self));
    }
}
Priestley answered 25/9, 2012 at 7:32 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.