3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { protected $c = ['foo' => ['bar' => 'baz']]; function __get($name) { return $c[$name]; } } $a = new A; var_dump($a->foo['bar']); $a->foo['bar'] = 'bat'; var_dump($a->foo['bar']);
Output for git.master, git.master_jit
Warning: Undefined variable $c in /in/dDYW3 on line 9 Warning: Trying to access array offset on value of type null in /in/dDYW3 on line 9 Warning: Trying to access array offset on value of type null in /in/dDYW3 on line 15 NULL Warning: Undefined variable $c in /in/dDYW3 on line 9 Warning: Trying to access array offset on value of type null in /in/dDYW3 on line 9 Notice: Indirect modification of overloaded property A::$foo has no effect in /in/dDYW3 on line 17 Warning: Undefined variable $c in /in/dDYW3 on line 9 Warning: Trying to access array offset on value of type null in /in/dDYW3 on line 9 Warning: Trying to access array offset on value of type null in /in/dDYW3 on line 19 NULL
Output for rfc.property-hooks
Warning: Undefined variable $c in /in/dDYW3 on line 9 Warning: Trying to access array offset on null in /in/dDYW3 on line 9 Warning: Trying to access array offset on null in /in/dDYW3 on line 15 NULL Warning: Undefined variable $c in /in/dDYW3 on line 9 Warning: Trying to access array offset on null in /in/dDYW3 on line 9 Notice: Indirect modification of overloaded property A::$foo has no effect in /in/dDYW3 on line 17 Warning: Undefined variable $c in /in/dDYW3 on line 9 Warning: Trying to access array offset on null in /in/dDYW3 on line 9 Warning: Trying to access array offset on null in /in/dDYW3 on line 19 NULL

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