1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/Zend/tests/constants_009.phpt
T
Felipe Pena 77e7f1c191 - New tests
2008-08-25 19:36:01 +00:00

24 lines
250 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)