mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
7aacc705d0
Closes GH-5958
11 lines
133 B
PHP
11 lines
133 B
PHP
--TEST--
|
|
023: __NAMESPACE__ constant
|
|
--FILE--
|
|
<?php
|
|
namespace test\foo;
|
|
|
|
var_dump(__NAMESPACE__);
|
|
?>
|
|
--EXPECT--
|
|
string(8) "test\foo"
|