12345678910111213141516171819202122232425262728293031323334 |
- --TEST--
- 001: Class in namespace
- --FILE--
- <?php
- namespace test\ns1;
- class Foo {
- function __construct() {
- echo __CLASS__,"\n";
- }
-
- function bar() {
- echo __CLASS__,"\n";
- }
-
- static function baz() {
- echo __CLASS__,"\n";
- }
- }
- $x = new Foo;
- $x->bar();
- Foo::baz();
- $y = new \test\ns1\Foo;
- $y->bar();
- \test\ns1\Foo::baz();
- --EXPECT--
- test\ns1\Foo
- test\ns1\Foo
- test\ns1\Foo
- test\ns1\Foo
- test\ns1\Foo
- test\ns1\Foo
|