<?php $a1 = [1,2,3,4,5]; $a2 = [1,3,5]; $result = []; foreach($a1 as $item) { if (in_array($item, $a2)) { $result[] = 'match' . $item; } else { $result[] = $item; } } print_r($result);
You have javascript disabled. You will not be able to edit any code.