从平面数组创建唯一值及其计数的关联数组
如何获得每个独特物品的计数?
示例:
$array = [
"bye",
"bye",
"bye",
"hello",
"hello"
];
期望的结果:
['bye' => 3, 'hello' => 2]
How can I get number of counts for each unique items?
Example:
$array = [
"bye",
"bye",
"bye",
"hello",
"hello"
];
Desired result:
['bye' => 3, 'hello' => 2]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想获取给定数组中指定列中唯一值的总数,作为简单整数(而不是另一个数组),请尝试如下简单操作:
If you want to get the total count of unique values in a specified column within a given array, as a simple integer (rather than another array) try something simple like this:
您可以使用 array_count_values。
将返回:
You can use array_count_values.
will return :
您可以在您的数组将返回类似:
示例用法:
You can use
array_count_values
on your array which would return something like:Example Usage: