You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
245 B

--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)