$data['rows'][1] = array('id' => '1', 'cell' => array('branch' => 'ANT', 'type' => 'deliver', 'dateTime' => '2014-02-07 01:01:01'));
$data['rows'][2] = array('id' => '2', 'cell' => array('branch' => 'ANT', 'type' => 'deliver', 'dateTime' => '2014-02-06 01:01:01'));
$data['rows'][3] = array('id' => '3', 'cell' => array('branch' => 'GB2', 'type' => 'deliver', 'dateTime' => '2014-02-07 02:02:02'));
I want to sort $data['rows']
descending based on dateTime
. How can I do that?