1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 02:33:17 +02:00
Files
archived-php-src/Zend/tests/ns_019.phpt
T
Dmitry Stogov f32ffe9b43 Namespaces
2007-09-28 19:52:53 +00:00

13 lines
185 B
PHP
Executable File

--TEST--
019: __NAMESPACE__ constant and runtime names (php name)
--FILE--
<?php
function foo() {
return __FUNCTION__;
}
$x = __NAMESPACE__ . "::foo";
echo $x(),"\n";
--EXPECT--
foo