it working fine grouping the array by operator
but i want it to group by mutiple column
so I done this
foreach($transaction_array as $element)
{
$grouped_by_operator[$element['AGREEMENT_DETAILS']][] = $element;
$grouped_by_operator[$element['SUBSERVICE L3']][] = $element;
}
but its giving something different