3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Base { public static $prop = 'A'; } class Child extends Base { } // both values are A $excepted = 'A'; echo "Should be $excepted and is " . Base::$prop . "\n"; echo "Should be $excepted and is " . Child::$prop . "\n"; // both values are B $excepted = 'B'; Base::$prop = $expected; echo "Should be $excepted and is " . Base::$prop . "\n"; echo "Should be $excepted and is " . Child::$prop . "\n"; // VALUES DIFFER $expected = 'C'; $property = new ReflectionProperty('Base', 'prop'); $property->setValue($excepted); echo "Should be $excepted and is " . Base::$prop . "\n"; echo "Should be $excepted and is " . Child::$prop . "\n"; // VALUES STILL DIFFER $excepted = 'D'; Base::$prop = $expected; echo "Should be $excepted and is " . Base::$prop . "\n"; echo "Should be $excepted 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 Warning: Undefined variable $expected in /in/kltnT on line 21 Should be B and is Should be B and is Should be B and is B Should be B and is B Should be D and is C Should be D and is C

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:
56.44 ms | 402 KiB | 8 Q