最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

php获取数组中键值最大数组项的索引值,数组的指定key进行排序

来源:http://erdangjiade.com/topic/154.html 秋木苏 2016-12-29 15:32浏览(444)


```
$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个
}
```

标签: php×
评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2