php-src/Zend/tests/ns_028.phpt

27 lines
486 B
Plaintext
Raw Normal View History

--TEST--
028: Name ambiguity (class name & external namespace name)
--FILE--
<?php
require "ns_028.inc";
class Foo {
function __construct() {
2020-02-03 21:52:20 +00:00
echo "Method - ".__CLASS__."::".__FUNCTION__."\n";
}
static function Bar() {
2020-02-03 21:52:20 +00:00
echo "Method - ".__CLASS__."::".__FUNCTION__."\n";
}
}
$x = new Foo;
2008-12-04 20:12:30 +00:00
Foo\Bar();
$x = new Foo\Foo;
Foo\Foo::Bar();
\Foo\Bar();
--EXPECT--
Method - Foo::__construct
2008-12-04 20:12:30 +00:00
Func - Foo\Bar
Method - Foo\Foo::__construct
Method - Foo\Foo::Bar
Func - Foo\Bar