3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { static function bar() { $foo = static function() { return get_called_class(); }; return $foo(); } } class Bar extends Foo { function bar() { $foo = static function() { return get_called_class(); }; return $foo(); } } print Foo::bar(); print Bar::bar();
Output for 5.4.0 - 5.4.28
Fatal error: Cannot make static method Foo::bar() non static in class Bar in /in/5P5aW on line 22
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_FUNCTION, expecting T_PAAMAYIM_NEKUDOTAYIM in /in/5P5aW on line 5
Process exited with code 255.

preferences:
173.9 ms | 1395 KiB | 65 Q