php-src/ext/reflection/tests/bug53915.phpt
Gustavo André dos Santos Lopes fac1e87171 - Fixed bug #53915: ReflectionClass::getConstant(s) emits fatal error on
constants with self::.
- Reflown some NEWS entries to have lines no longer than 80 chars.
2011-02-03 12:38:25 +00:00

29 lines
410 B
PHP

--TEST--
Bug #53915 - ReflectionClass::getConstant(s) emits fatal error on selfreferencing constants
--FILE--
<?php
Class Foo
{
const A = 1;
const B = self::A;
}
$rc = new ReflectionClass('Foo');
print_r($rc->getConstants());
Class Foo2
{
const A = 1;
const B = self::A;
}
$rc = new ReflectionClass('Foo2');
print_r($rc->getConstant('B'));
--EXPECT--
Array
(
[A] => 1
[B] => 1
)
1