mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
14 lines
209 B
PHP
14 lines
209 B
PHP
--TEST--
|
|
053: Run-time constant definition
|
|
--FILE--
|
|
<?php
|
|
namespace test\ns1;
|
|
|
|
define(__NAMESPACE__ . '\\NAME', basename(__FILE__));
|
|
echo NAME."\n";
|
|
echo \test\ns1\NAME."\n";
|
|
--EXPECT--
|
|
ns_053.php
|
|
ns_053.php
|
|
|