Not. In PHP, the interpreter will not know all the classes that may possibly exist (especially due to the existence of __autoload), so the runtime will face many conflicts. Having something like this:
use Foo\*;
There may be Foo \ Exception, which should be __autoload
ed - PHP cannot know.
What you can do is import the sub-namespace:
use Foo\Bar; $o = new Bar\Baz();
or with an alias:
use Foo\Bar as B; $o = new B\Baz();
source share