php-src/ext/reflection/tests/bug31651.phpt
2008-05-24 13:34:22 +00:00

25 lines
316 B
PHP
Executable File

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