php-src/Zend/tests/ns_008.phpt
2008-12-04 20:12:30 +00:00

14 lines
192 B
PHP
Executable File

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