blob: 59f19eae5d69dbdc802c5dd05adcd13a53e43267 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--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
)
)
|