3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface Itesti { public function hello(); } class testi { public function test(Itesti $temp) { $temp->hello(); } } $temp = new testi(); try { $temp->test(new class implements Itesti{ public function hello() { throw new Exception("NOOOOU"); } }); } catch (Exception ex) { echo ex->getMessage(); }
Output for 7.0.0
Parse error: syntax error, unexpected 'ex' (T_STRING), expecting variable (T_VARIABLE) in /in/gfIZu on line 22
Process exited with code 255.
Output for 5.5.24 - 5.5.30, 5.6.8 - 5.6.16
Parse error: syntax error, unexpected 'class' (T_CLASS) in /in/gfIZu on line 17
Process exited with code 255.

preferences:
164.01 ms | 1395 KiB | 24 Q