1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00
Files
archived-php-src/Zend/tests/ns_018.phpt
2018-10-14 12:07:20 -03:00

15 lines
205 B
PHP

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