mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
12 lines
180 B
PHP
12 lines
180 B
PHP
--TEST--
|
|
048: __NAMESPACE__ constant and runtime names (ns name)
|
|
--FILE--
|
|
<?php
|
|
namespace test\ns1;
|
|
|
|
const FOO = 0;
|
|
|
|
var_dump(constant(__NAMESPACE__ . "\\FOO"));
|
|
--EXPECT--
|
|
int(0)
|