3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Some\Other { class Foo { use Some\NiceTrait; function baz() { $this->bar = function() {echo 'im a callable bar';}; } } } namespace { trait Some\NiceTrait { function bar() { echo "bar over here!"; } } $foo = new Some\Other\Foo(); $foo->baz(); $foo->bar(); }
Output for 5.4.0 - 5.4.30
Parse error: syntax error, unexpected '\' (T_NS_SEPARATOR), expecting '{' in /in/Wo904 on line 20
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_USE, expecting T_FUNCTION in /in/Wo904 on line 9
Process exited with code 255.

preferences:
182.6 ms | 1395 KiB | 67 Q