count of duplicate elements in an array in php(php数组中重复元素的数量)
问题描述
我们如何找到多维数组
中重复元素的数量?
Hi,
How can we find the count of duplicate elements in a multidimensional array
?
我有一个这样的数组
Array
(
[0] => Array
(
[lid] => 192
[lname] => sdsss
)
[1] => Array
(
[lid] => 202
[lname] => testing
)
[2] => Array
(
[lid] => 192
[lname] => sdsss
)
[3] => Array
(
[lid] => 202
[lname] => testing
)
)
如何求每个元素的个数?
How to find the count of each elements ?
即,id为192
、202
等的条目数
i.e, count of entries with id 192
,202
etc
推荐答案
你可以采用这个技巧;将数组的每一项(它本身就是一个数组)映射到其各自的 ['lid']
成员,然后使用 array_count_value()
为您进行计数.
You can adopt this trick; map each item of the array (which is an array itself) to its respective ['lid']
member and then use array_count_value()
to do the counting for you.
array_count_values(array_map(function($item) {
return $item['lid'];
}, $arr);
另外,它是单线的,因此增加了精英黑客的地位.
Plus, it's a one-liner, thus adding to elite hacker status.
从 5.5 开始,您可以将其缩短为:
Since 5.5 you can shorten it to:
array_count_values(array_column($arr, 'lid'));
这篇关于php数组中重复元素的数量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:php数组中重复元素的数量
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01