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