php-src/Zend/tests/ns_008.phpt

14 lines
193 B
Plaintext
Raw Normal View History

2007-07-12 09:23:48 +00:00
--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