<?php $arr = [['A', 'B'],['C', 'B'],['B', 'C'],['A', 'A'],['B', 'A'],['B', 'B'],]; $temp = []; // temporary container $new_arr = array_filter($arr, function($e) use(&$temp) { $orig = $e; // create an original copy sort($e); // sort if(!in_array($e, $temp)) { $temp[] = $e; // push if doesn't exist yet return $orig; // return the orig } }); print_r($new_arr);
You have javascript disabled. You will not be able to edit any code.