3v4l.org

run code in 300+ PHP versions simultaneously
<?php <?php namespace foo; class Xyz {} function abc () {} ?> <?php namespace bar; class Xyz {} function abc () {} ?> <?php namespace bar; use foo\Xyz; use foo\abc; new Xyz(); // instantiates \foo\Xyz new namespace\Xyz(); // instantiates \bar\Xyz abc(); // invokes \bar\abc regardless of the second use statement \foo\abc(); // it has to be invoked using the fully qualified name ?> ?>
Output for 5.3.0 - 5.3.28, 5.4.0 - 5.4.23
Parse error: syntax error, unexpected '<' in /in/0Cd4I on line 2
Process exited with code 255.

preferences:
180.28 ms | 1395 KiB | 60 Q