php-src/Zend/tests/ns_009.phpt

12 lines
171 B
Plaintext
Raw Normal View History

2007-09-28 19:52:53 +00:00
--TEST--
009: __NAMESPACE__ constant and runtime names (php name)
--FILE--
<?php
class foo {
}
$x = __NAMESPACE__ . "\\foo";
2007-09-28 19:52:53 +00:00
echo get_class(new $x),"\n";
--EXPECT--
foo