3v4l.org

run code in 300+ PHP versions simultaneously
<?php $name = array(0 => 'mark', 'jones', 'alex'); $age = array(0 => 12, 23, 34); $country = array(0 => 'USA', 'UK', 'Canada'); $values = array_merge_recursive($name, $age, $country); print_r($values);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => mark [1] => jones [2] => alex [3] => 12 [4] => 23 [5] => 34 [6] => USA [7] => UK [8] => Canada )

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:
49.94 ms | 401 KiB | 8 Q