3v4l.org

run code in 300+ PHP versions simultaneously
<?php $one = Array ( 4 => 'bim', 5 => 'pow', 6 => 'foo' ); $two = Array ( 'n' => Array ( 0 => 1 ), 'm' => Array ( 0 => 1, 1 => 2 ), 'l' => Array ( 0 => 1, 1 => 4, 2 => 64 ) ); $result = array(); while((list($oneKey, $oneValue) = each($one)) && (list($twoKey, $twoValue) = each($two))) { $result[$oneValue] = array_map(function($item) use ($twoKey) { return $twoKey.'-'.$item; }, $twoValue); }; var_dump($result);

preferences:
30.53 ms | 402 KiB | 5 Q