1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 15:38:49 +02:00
Files
archived-php-src/Zend/tests/ns_031.phpt
T
2020-02-03 22:52:20 +01:00

22 lines
357 B
PHP

--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