gpt4 book ai didi

php - 如何计算数组中的相同值并将其存储到变量中?

转载 作者:IT王子 更新时间:2023-10-28 23:56:27 24 4
gpt4 key购买 nike

$items = explode(',',$product); // values is 4,2,4,2,2,4

$unique_items=array_unique($items); // gives me 4,2

接下来应该用什么代码给我 4 = 3 , 2 = 3 并将值的数量存储到变量中?

最佳答案

参见:array_count_values

喜欢:

$occurences = array_count_values($items);
print_r($occurences);

输出:

Array
(
[4] => 3
[2] => 3
)

用法:

echo $occurences[4]; // outputs 3

关于php - 如何计算数组中的相同值并将其存储到变量中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6408095/

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