mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
7aacc705d0
Closes GH-5958
13 lines
173 B
PHP
13 lines
173 B
PHP
--TEST--
|
|
009: __NAMESPACE__ constant and runtime names (php name)
|
|
--FILE--
|
|
<?php
|
|
class foo {
|
|
}
|
|
|
|
$x = __NAMESPACE__ . "\\foo";
|
|
echo get_class(new $x),"\n";
|
|
?>
|
|
--EXPECT--
|
|
foo
|