3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { protected static $a = 5; public function foo() { $f = function() { var_dump(__CLASS__); var_dump(get_called_class()); var_dump($this); var_dump(self); var_dump(static); }; $f(); } } $a = new A; $a->foo();
Output for 5.4.0 - 5.4.25, 5.5.0 - 5.5.9
Parse error: syntax error, unexpected ')', expecting :: (T_PAAMAYIM_NEKUDOTAYIM) in /in/IiAZ4 on line 10
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected ')', expecting T_PAAMAYIM_NEKUDOTAYIM in /in/IiAZ4 on line 10
Process exited with code 255.

preferences:
184.68 ms | 1395 KiB | 72 Q