I have an array as
Array
(
[0] => Array
(
[attribute_pa_weight] => 500g-pack
)
[1] => Array
(
[attribute_pa_weight] => 1kg-pack
)
)
Would need the Output to be
Array
(
[attribute_pa_weight] => Array
(
[0] => 500g-pack
[1] => 1kg-pack
)
)
Want the sorting without mentioning the key value to sort because we have the dey coming dynamically.