3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class T { final private function __construct(){ } public static function getInstance() { if (!isset(static::$instanses)) { static::$instanses = new $this; } return static::$instanses; } } class A extends T { } $t = A::getInstance(); var_dump($t); ?>
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Using $this when not in object context in /in/kAGdT:13 Stack trace: #0 /in/kAGdT(24): T::getInstance() #1 {main} thrown in /in/kAGdT on line 13
Process exited with code 255.
Output for 7.0.3 - 7.0.20
Notice: Undefined variable: this in /in/kAGdT on line 13 Fatal error: Uncaught Error: Class name must be a valid object or a string in /in/kAGdT:13 Stack trace: #0 /in/kAGdT(24): T::getInstance() #1 {main} thrown in /in/kAGdT on line 13
Process exited with code 255.
Output for 7.0.0 - 7.0.2
Fatal error: Uncaught Error: Access to undeclared static property: A::$instanses in /in/kAGdT:13 Stack trace: #0 /in/kAGdT(24): T::getInstance() #1 {main} thrown in /in/kAGdT on line 13
Process exited with code 255.
Output for 5.4.2 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28
Notice: Undefined variable: this in /in/kAGdT on line 13 Fatal error: Class name must be a valid object or a string in /in/kAGdT on line 13
Process exited with code 255.

preferences:
226.73 ms | 402 KiB | 257 Q