mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
10 lines
130 B
PHP
10 lines
130 B
PHP
--TEST--
|
|
023: __NAMESPACE__ constant
|
|
--FILE--
|
|
<?php
|
|
namespace test\foo;
|
|
|
|
var_dump(__NAMESPACE__);
|
|
--EXPECT--
|
|
string(8) "test\foo"
|