gpt4 book ai didi

php - 检查数组 PHP 中特定值的次数

转载 作者:IT王子 更新时间:2023-10-29 00:19:53 25 4
gpt4 key购买 nike

我有一个名为 $uid 的数组。如何查看值“12”在我的 $uid 数组中出现了多少次?

最佳答案

几种方式。

$cnt = count(array_filter($uid,function($a) {return $a==12;}));

$tmp = array_count_values($uid);
$cnt = $tmp[12];

或任何数量的其他方法。

关于php - 检查数组 PHP 中特定值的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7960307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com