1--TEST-- 2002: Import in namespace 3--FILE-- 4<?php 5namespace test\ns1; 6 7class Foo { 8 static function bar() { 9 echo __CLASS__,"\n"; 10 } 11} 12 13use test\ns1\Foo as Bar; 14use test\ns1 as ns2; 15use test\ns1; 16 17Foo::bar(); 18\test\ns1\Foo::bar(); 19Bar::bar(); 20ns2\Foo::bar(); 21ns1\Foo::bar(); 22?> 23--EXPECT-- 24test\ns1\Foo 25test\ns1\Foo 26test\ns1\Foo 27test\ns1\Foo 28test\ns1\Foo 29