1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 15:12:39 +02:00
Files
archived-php-src/Zend/tests/constants_009.phpt

26 lines
245 B
PHP

--TEST--
Accessing constants inside namespace
--FILE--
<?php
namespace foo\x;
const x = 2;
class x {
const x = 1;
}
var_dump(namespace\x,
x::x,
namespace\x::x);
var_dump(defined('foo\x\x'));
?>
--EXPECT--
int(2)
int(1)
int(1)
bool(true)