1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
--TEST-- Testing instantiation using namespace:: prefix --FILE-- <?php namespace foo; class bar { } class_alias('foo\bar', 'foo\baz'); var_dump(new namespace\baz); ?> --EXPECTF-- object(foo\bar)#%d (0) { }