3v4l.org

run code in 300+ PHP versions simultaneously
<?php $master = array(); $arrColors = array('R', 'B', 'G' ,'Y'); $arrNumbers = array('1', '2', '3', '4'); foreach($arrColors as $color) { foreach($arrNumbers as $num) { array_push($master, $color, $num); //$master += array($color => $num); //echo $color.' => '.$num; //echo "\n"; } } print_r($master);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => R [1] => 1 [2] => R [3] => 2 [4] => R [5] => 3 [6] => R [7] => 4 [8] => B [9] => 1 [10] => B [11] => 2 [12] => B [13] => 3 [14] => B [15] => 4 [16] => G [17] => 1 [18] => G [19] => 2 [20] => G [21] => 3 [22] => G [23] => 4 [24] => Y [25] => 1 [26] => Y [27] => 2 [28] => Y [29] => 3 [30] => Y [31] => 4 )

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:
43.18 ms | 402 KiB | 8 Q