mirror of
https://github.com/php/php-src.git
synced 2025-01-02 08:54:04 +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"
|