php-src/Zend/tests/ns_031.phpt
Dmitry Stogov f32ffe9b43 Namespaces
2007-09-28 19:52:53 +00:00

22 lines
344 B
PHP
Executable File

--TEST--
031: Namespace support for user functions (ns name)
--FILE--
<?php
namespace test;
class Test {
static function foo() {
echo __CLASS__,"::",__FUNCTION__,"\n";
}
}
function foo() {
echo __FUNCTION__,"\n";
}
call_user_func(__NAMESPACE__."::foo");
call_user_func(__NAMESPACE__."::test::foo");
--EXPECT--
test::foo
test::Test::foo