mirror of
https://github.com/php/php-src.git
synced 2025-01-10 13:03:54 +08:00
42 lines
556 B
PHP
42 lines
556 B
PHP
--TEST--
|
|
Bug #63614 (Fatal error on Reflection)
|
|
--FILE--
|
|
<?php
|
|
function dummy() {
|
|
static $a = array();
|
|
}
|
|
|
|
class Test
|
|
{
|
|
const A = 0;
|
|
|
|
public function func()
|
|
{
|
|
static $a = array(
|
|
self::A => 'a'
|
|
);
|
|
}
|
|
}
|
|
|
|
$reflect = new ReflectionFunction("dummy");
|
|
print_r($reflect->getStaticVariables());
|
|
$reflect = new ReflectionMethod('Test', 'func');
|
|
print_r($reflect->getStaticVariables());
|
|
?>
|
|
--EXPECT--
|
|
Array
|
|
(
|
|
[a] => Array
|
|
(
|
|
)
|
|
|
|
)
|
|
Array
|
|
(
|
|
[a] => Array
|
|
(
|
|
[0] => a
|
|
)
|
|
|
|
)
|