mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +08:00
22 lines
276 B
PHP
22 lines
276 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)
|