3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Base { public static $prop = 'A'; } class Child extends Base { } // both values are A $expected = 'A'; echo "Should be $expected and is " . Base::$prop . "\n"; echo "Should be $expected and is " . Child::$prop . "\n"; // both values are B $expected = 'B'; Base::$prop = $expected; echo "Should be $expected and is " . Base::$prop . "\n"; echo "Should be $expected and is " . Child::$prop . "\n"; // VALUES DIFFER $expected = 'C'; $property = new ReflectionProperty('Base', 'prop'); $property->setValue($expected); echo "Should be $expected and is " . Base::$prop . "\n"; echo "Should be $expected and is " . Child::$prop . "\n"; // VALUES STILL DIFFER $expected = 'D'; Base::$prop = $expected; echo "Should be $expected and is " . Base::$prop . "\n"; echo "Should be $expected and is " . Child::$prop . "\n";
Output for git.master, git.master_jit, rfc.property-hooks
Should be A and is A Should be A and is A Should be B and is B Should be B and is B Should be C and is C Should be C and is C Should be D and is D Should be D and is D

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
39.05 ms | 401 KiB | 8 Q