检查 PHP 数组中特定值的出现次数
我有一个名为 $uid 的数组。如何检查值“12”在我的 $uid 数组中出现了多少次?
I have an array named $uid. How can I check to see how many times the value "12" is in my $uid array?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
几种方法。
或
任意数量的其他方法。
Several ways.
or
or any number of other methods.
使用
array_count_values()
。例如,Use
array_count_values()
. For example,很简单:
Very simple:
使用函数 array_count_values。
Use the function array_count_values.
对此有不同的解决方案:
或者
或者只是 for 循环
或 foreach
there are different solution to this:
or
or just a for loop
or a foreach
这将导致例如
which will result for example in