加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php – 获取数组中重复次数最多的值

发布时间:2020-12-13 22:16:02 所属栏目:PHP教程 来源:网络整理
导读:我有一系列这样的数字: $array = array(1,1,4,3,1); 如何获得最重复值的计数? 解决方法 这应该工作: $count=array_count_values($array);//Counts the values in the array,returns associatve arrayarsort($count);//Sort it from highest to lowest$key
我有一系列这样的数字:

$array = array(1,1,4,3,1);

如何获得最重复值的计数?

解决方法

这应该工作:

$count=array_count_values($array);//Counts the values in the array,returns associatve array
arsort($count);//Sort it from highest to lowest
$keys=array_keys($count);//Split the array so we can find the most occuring key
echo "The most occuring value is $keys[0][1] with $keys[0][0] occurences."

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读