xref: /PHP-5.5/Zend/tests/ns_002.phpt (revision 610c7fbe)
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--EXPECT--
23test\ns1\Foo
24test\ns1\Foo
25test\ns1\Foo
26test\ns1\Foo
27test\ns1\Foo
28