I have a variable $_SESSION["cart_item"] which stores cart items by array like given below -
Array
(
[0] => Array
(
[company] => ABC company
[good] => Laptop
[price] => 100
[ship] => 20
)
[1] => Array
(
[company] => ABC company
[good] => PC
[price] => 20
[ship] => 70
)
[2] => Array
(
[company] => DELL PLC
[good] => Hard Drive
[price] => 500
[ship] => 50
)
[3] => Array
(
[company] => ABC company
[good] => Bag
[price] => 30
[ship] => 40
)
)
I want to get the sorted data by company and the [ship]
is highest value.