3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = array('foo' => 'bar', 'some' => 'string'); $b = array(42 => 'answer to the life and everything', 1337 => 'leet'); print_r([ $a + $b, array_merge($a, $b), array_replace($a, $b) ]);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [foo] => bar [some] => string [42] => answer to the life and everything [1337] => leet ) [1] => Array ( [foo] => bar [some] => string [0] => answer to the life and everything [1] => leet ) [2] => Array ( [foo] => bar [some] => string [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:
29.26 ms | 407 KiB | 5 Q