php-src/ext/reflection/tests/bug49074.phpt
Felipe Pena c75f162165 - Fixed ReflectionClass::getStaticProperties() to do not return the private properties from parent class;
behavior already adopted in ReflectionClass::getDefaultProperties() and ReflectionClass::getProperties().
2009-08-01 20:44:00 +00:00

32 lines
513 B
PHP

--TEST--
Bug #49074 (private class static fields can be modified by using reflection)
--FILE--
<?php
class Test {
private static $data1 = 1;
private static $data4 = 4;
}
class Test2 extends Test {
private static $data2 = 2;
public static $data3 = 3;
}
$r = new ReflectionClass('Test2');
$m = $r->getStaticProperties();
$m['data1'] = 100;
$m['data2'] = 200;
$m['data3'] = 300;
$m['data4'] = 400;
var_dump($r->getStaticProperties());
?>
--EXPECT--
array(2) {
["data2"]=>
int(2)
["data3"]=>
int(3)
}