mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
22 lines
273 B
PHP
22 lines
273 B
PHP
--TEST--
|
|
Using namespace constants and constants of global scope
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace foo;
|
|
|
|
const foo = 1;
|
|
|
|
define('foo', 2);
|
|
|
|
var_dump(foo, namespace\foo, \foo\foo, \foo, constant('foo'), constant('foo\foo'));
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
int(1)
|
|
int(1)
|
|
int(2)
|
|
int(2)
|
|
int(1)
|