3v4l.org

run code in 300+ PHP versions simultaneously
<?php absract class bar { abstract function childMethod(); function parentMethod(){ $this->childMethod(); } } class foo extends bar { function childMethod(){ return 'I am child'; } } $o = new foo(); echo $o->parentMethod()->childMethod();
Output for 5.4.0 - 5.4.19
Parse error: syntax error, unexpected 'class' (T_CLASS) in /in/5HFPa on line 3
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_CLASS in /in/5HFPa on line 3
Process exited with code 255.

preferences:
180.08 ms | 1395 KiB | 55 Q