<?php class A { public static $x; } A::$x = 123; $rp = new ReflectionProperty('A', 'x'); A::$x = 456; echo $rp;
You have javascript disabled. You will not be able to edit any code.