<?php $ids=array("a","b","c","d","e"); $groups=array(array("a","c"),array("c","e")); array_walk($groups,function($v,$i)use(&$ids){ $ids=array_diff($ids,$v); }); print_r($ids);
You have javascript disabled. You will not be able to edit any code.