<?php class foo { protected static $test = 'bar'; } $classReflection = new ReflectionClass('foo'); $property = $classReflection->getProperty('test'); var_dump($property); $property->setAccessible(true); var_dump($classReflection->getStaticProperties()); var_dump($classReflection->getStaticPropertyValue('test'));
You have javascript disabled. You will not be able to edit any code.