I've got a multi-dimensional array that I'm trying to remove duplicate rows from. Like this:
[PHP]
$arr[]=array('biscuit ','cheese','cow ');
$arr[]=array('biscuit ','cheese','hor se');
$arr[]=array('biscuit ','cheese','hor se');
$arr[]=array(7,42,10) ;
$arr[]=array(7,34,10) ;
$arr[]=array(7,42,10) ;
[PHP]
$arr[]=array('biscuit ','cheese','cow ');
$arr[]=array('biscuit ','cheese','hor se');
$arr[]=array('biscuit ','cheese','hor se');
$arr[]=array(7,42,10) ;
$arr[]=array(7,34,10) ;
$arr[]=array(7,42,10) ;
Comment