3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = [ 'a' => 'A', 'b' => 'B', 3 => 'THREE', 4 => 'FOUR' ]; $b = [ 'b' => 'another-B', 'c' => 'C', 4 => 'another-FOUR' ]; var_dump(array_merge($a, $b)); var_dump(array_replace($a, $b));
Output for git.master_jit, git.master
array(6) { ["a"]=> string(1) "A" ["b"]=> string(9) "another-B" [0]=> string(5) "THREE" [1]=> string(4) "FOUR" ["c"]=> string(1) "C" [2]=> string(12) "another-FOUR" } array(5) { ["a"]=> string(1) "A" ["b"]=> string(9) "another-B" [3]=> string(5) "THREE" [4]=> string(12) "another-FOUR" ["c"]=> string(1) "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:
28.98 ms | 406 KiB | 5 Q