php-src/Zend/tests/ns_018.phpt

15 lines
207 B
Plaintext
Raw Normal View History

2007-07-12 09:23:48 +00:00
--TEST--
018: __NAMESPACE__ constant and runtime names (ns name)
--FILE--
<?php
namespace test;
function foo() {
return __FUNCTION__;
}
$x = __NAMESPACE__ . "::foo";
echo $x(),"\n";
--EXPECT--
test::foo