I have the following json:
{
"ID":"4",
"name":"Gil",
"likes":0,
"Dec":"A Man"
},
{
"ID":"3",
"name":"Yoni",
"likes":3,
"Dec":"A child"
},
{
"ID":"6",
"name":"Roni",
"likes":1,
"Dec":"A woman"
}
And I would like to rearange it based on the likes from heighst to lowest so the result will be :
{
"ID":"5",
"name":"Roni",
"likes":6,
"Dec":"A woman"
} ,
{
"ID":"3",
"name":"Yoni",
"likes":3,
"Dec":"A child"
},
{
"ID":"4",
"name":"Gil",
"likes":0,
"Dec":"A Man"
}
How can I rearange it in php ?