php-src/Zend/tests/ns_008.phpt
2018-10-14 19:45:12 +02:00

14 lines
191 B
PHP

--TEST--
008: __NAMESPACE__ constant and runtime names (ns name)
--FILE--
<?php
namespace test;
class foo {
}
$x = __NAMESPACE__ . "\\foo";
echo get_class(new $x),"\n";
--EXPECT--
test\foo