3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array1 = array ( '2019-04-29' => array ( 0 => 366, 1 => 82, 2 => 44 ), '2019-04-30' => array ( 0 => 330, 1 => 115, 2 => 55 ) ); $array2 = array(492, 500); $array1 = array_values($array1); foreach ($array2 as $k => &$v) { $v = array_merge(array($v), $array1[$k]); } print_r($array2);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [0] => 492 [1] => 366 [2] => 82 [3] => 44 ) [1] => Array ( [0] => 500 [1] => 330 [2] => 115 [3] => 55 ) )

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