Answers for "group and count repeated values in php array"

PHP
2

php count amount of times a value appears in array

$tmp = array_count_values($uid);
$cnt = $tmp[12];
//Or
$cnt = count(array_filter($uid,function($a) {return $a==12;}));
//In both cases $var will be a number
Posted by: Guest on May-14-2020
0

php group array by value and count

$colors=array("red","red","red","blue","green");
$colorsCount=array_count_values($colors);
print_r($colorsCount);
#Array
#(
#    [red] => 3
#    [blue] => 1
#    [green] => 1
#)
Posted by: Guest on December-05-2020

Code answers related to "group and count repeated values in php array"

Browse Popular Code Answers by Language