对二维数组排序
$order = 'aa_count';
$ages = array();
foreach ($reportList as $v) {
    $ages[] = $v[$order];
}
array_multisort($ages, SORT_DESC, $reportList);