<?php $arraySession = [ 'sampleA' => ['1', '2', '3'], 'sampleB' => ['1', '2', '3'], ]; $arrayPost = [ 'sampleA' => ['1'], 'sampleB' => ['1','2'], ]; $result = []; foreach ($arraySession as $k => $row) { $result[$k] = array_diff($row, $arrayPost[$k] ?? []); } var_export($result);
You have javascript disabled. You will not be able to edit any code.