<?php $a = [7, 5, 6, 9]; $b = [1, 3, 2, 4]; $c = array_combine($a,$b); $r = []; array_walk($c, function($k,$v) use (&$r){$r[] = "{$v}-{$k}";}); print_r($r);
You have javascript disabled. You will not be able to edit any code.