php-src/Zend/tests/ns_001.phpt

36 lines
432 B
Plaintext
Raw Normal View History

2007-07-12 09:23:48 +00:00
--TEST--
001: Class in namespace
--FILE--
<?php
2008-12-04 20:12:30 +00:00
namespace test\ns1;
2007-07-12 09:23:48 +00:00
class Foo {
function __construct() {
echo __CLASS__,"\n";
}
2018-09-16 17:16:42 +00:00
2007-07-12 09:23:48 +00:00
function bar() {
echo __CLASS__,"\n";
}
2018-09-16 17:16:42 +00:00
2007-07-12 09:23:48 +00:00
static function baz() {
echo __CLASS__,"\n";
}
}
$x = new Foo;
$x->bar();
Foo::baz();
2008-12-04 20:12:30 +00:00
$y = new \test\ns1\Foo;
2007-07-12 09:23:48 +00:00
$y->bar();
2008-12-04 20:12:30 +00:00
\test\ns1\Foo::baz();
?>
2007-07-12 09:23:48 +00:00
--EXPECT--
2008-12-04 20:12:30 +00:00
test\ns1\Foo
test\ns1\Foo
test\ns1\Foo
test\ns1\Foo
test\ns1\Foo
test\ns1\Foo