<?php $a = [7, 5, 6, 9]; $b = [1, 3, 2, 4]; $result = array_map(function($a1,$b1){ return $a1.'-'.$b1; },$a,$b); print_r($result);
You have javascript disabled. You will not be able to edit any code.