I have the following array, I need to reorder it by average rating descending. Here is a snippet. Any idea how I would go about doing this?
Thanks
Array
(
[0] => Array
(
[id] => 3
[name] =>
[rating] => 0
)
[1] => Array
(
[id] => 2
[name] =>
[rating] => 2
)
)