<?php function sortByTime($a, $b) { if ($a->time == $b->time) { return 0; } return ($a->time < $b->time) ? -1 : 1; } $a = json_decode('[{"id": 111,"time": 123123123,"data": "testc"},{ "id":200 ,"time":433123123,"data":"testb"},{"id":300,"time":33123123,"data":"testb"}]'); usort($a, "sortByTime"); print_r($a);
You have javascript disabled. You will not be able to edit any code.