<?php $array = [[5, 6], [1, 2], [6, 5], [1, 2], [1 => 2, 0 => 1]]; var_export( array_unique( array_map( function ($row) { sort($row); return $row; }, $array ), SORT_REGULAR ) );
You have javascript disabled. You will not be able to edit any code.