mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
12 lines
171 B
PHP
Executable File
12 lines
171 B
PHP
Executable File
--TEST--
|
|
009: __NAMESPACE__ constant and runtime names (php name)
|
|
--FILE--
|
|
<?php
|
|
class foo {
|
|
}
|
|
|
|
$x = __NAMESPACE__ . "::foo";
|
|
echo get_class(new $x),"\n";
|
|
--EXPECT--
|
|
foo
|