3v4l.org

run code in 500+ PHP versions simultaneously
<?php $a = range('a', 'd'); $b = range(13, 16); $c = ['Orange', 'Blue', 'Red', 'White']; $e = array_map(null, $a, $b, $c); print_r($e);
Output for 8.2.31 - 8.2.33, 8.3.0 - 8.3.33, 8.4.1 - 8.4.24, 8.5.0 - 8.5.9
Array ( [0] => Array ( [0] => a [1] => 13 [2] => Orange ) [1] => Array ( [0] => b [1] => 14 [2] => Blue ) [2] => Array ( [0] => c [1] => 15 [2] => Red ) [3] => Array ( [0] => d [1] => 16 [2] => White ) )

preferences:
52.17 ms | 802 KiB | 4 Q