3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo{ private static $that; public function __construct(){ //self::$this = new Foo(); echo "From Foo()"; } public static function init(){ $that = __CLASS__; self::$that = new $that(func_get_args()); var_dump(self::$that); //var_dump(self::$this); echo "From Foo::init()"; } public function test(){ echo "called from static"; } } Foo::init();

preferences:
36.34 ms | 402 KiB | 5 Q