php-src/ext/reflection/tests/bug31651.phpt
2020-02-03 22:52:20 +01:00

25 lines
319 B
PHP

--TEST--
Reflection Bug #31651 (ReflectionClass::getDefaultProperties segfaults with arrays.)
--FILE--
<?php
class Test
{
public $a = array('a' => 1);
}
$ref = new ReflectionClass('Test');
print_r($ref->getDefaultProperties());
?>
--EXPECT--
Array
(
[a] => Array
(
[a] => 1
)
)