3v4l.org

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

preferences:
39.7 ms | 402 KiB | 5 Q