3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public function publicMethod() { return function() { return $this->privateMethod(); }; } private function privateMethod() { return 'works'; } } $test = new Test; $testFunction = $test->publicMethod(); ecgi $testFunction()
Output for 5.4.0 - 5.4.30
Parse error: syntax error, unexpected '$testFunction' (T_VARIABLE) in /in/Aj4Nk on line 21
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_VARIABLE in /in/Aj4Nk on line 21
Process exited with code 255.

preferences:
183.86 ms | 1395 KiB | 67 Q