3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = array('foo' => 'bar', 'some' => 'string', 'me' => 'is original'); $b = array(42 => 'answer to the life and everything', 1337 => 'leet', 'me' => 'is overridden'); print_r(array( $a + $b, array_merge($a, $b), array_replace($a, $b) ));
Output for git.master_jit, git.master, rfc.property-hooks
Array ( [0] => Array ( [foo] => bar [some] => string [me] => is original [42] => answer to the life and everything [1337] => leet ) [1] => Array ( [foo] => bar [some] => string [me] => is overridden [0] => answer to the life and everything [1] => leet ) [2] => Array ( [foo] => bar [some] => string [me] => is overridden [42] => answer to the life and everything [1337] => leet ) )

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:
40.29 ms | 407 KiB | 5 Q