3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Name\Space { function bar() { echo "bar over here!"; } } //set_error_handler(function() { return true; }); trait TraitOne { use TraitTwo; } trait TraitTwo { } class Foo { use function Name\Space\bar; const bar = 'yo'; function baz() { $this->bar = function() {echo 'im a callable bar';}; } } $foo = new Foo(); $foo->baz(); $foo->bar();
Output for 5.4.0 - 5.4.30
Fatal error: No code may exist outside of namespace {} in /in/O7BV3 on line 11
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_STRING in /in/O7BV3 on line 8
Process exited with code 255.

preferences:
184.3 ms | 1395 KiB | 67 Q