```
$mon = array("8" => $ordersaleslist['aug'], "9" => $ordersaleslist['sep'], "10" => $ordersaleslist['oct'], "11" => $ordersaleslist['nov'], "12" => $ordersaleslist['dec']);
asort($mon);// arsort() 函数对关联数组按照键值进行降序排,ksort()函数对关联数组按照键名进行升序排序。
$ordersales_mon = end(array_keys($mon));//数组最后一个key值,array_keys()返回数组中所有的键名。
$ordersales_top = end($mon);//返回最后一个value值
//按数组的指定字段降序排列
$flag=array();
foreach($list as $arr2){
$flag[]=$arr2["ordersales"];
}
if(!empty($condition) ||!empty($condition2)){
array_multisort($flag, SORT_DESC, $list);
$list = array_slice($list,0,50);//排序后的数组的前50个
}
```
友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群