本文介绍了检查数组 PHP 中特定值的次数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个名为 $uid 的数组.如何检查 $uid 数组中值12"的次数?
I have an array named $uid. How can I check to see how many times the value "12" is in my $uid array?
推荐答案
几种方式.
$cnt = count(array_filter($uid,function($a) {return $a==12;}));
或
$tmp = array_count_values($uid);
$cnt = $tmp[12];
或任意数量的其他方法.
or any number of other methods.
这篇关于检查数组 PHP 中特定值的次数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!