i have the following array:
Array
(
[0] =Array
(
[0] =Leamore Windows Ltd
[1] =55339883351141 7
[2] =20
)
[1] =Array
(
[0] =HRPC
[1] =92058920521053 8
[2] =1
)
[2] =Array
(
[0] =Leamore Windows Ltd
[1] =55339883351141 7
[2] =2
)
)
is it possible to group the items in the array and order by name to
output the following:
Array
(
[0] =Array
(
[0] =HRPC
[1] =92058920521053 8
[2] =1
)
[1] =Array
(
[0] =Leamore Windows Ltd
[1] =55339883351141 7
[2] =22
)
)
Array
(
[0] =Array
(
[0] =Leamore Windows Ltd
[1] =55339883351141 7
[2] =20
)
[1] =Array
(
[0] =HRPC
[1] =92058920521053 8
[2] =1
)
[2] =Array
(
[0] =Leamore Windows Ltd
[1] =55339883351141 7
[2] =2
)
)
is it possible to group the items in the array and order by name to
output the following:
Array
(
[0] =Array
(
[0] =HRPC
[1] =92058920521053 8
[2] =1
)
[1] =Array
(
[0] =Leamore Windows Ltd
[1] =55339883351141 7
[2] =22
)
)
Comment