Answers for "php count occurrence 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 count occurrences of string in array

$array = array('', '', 'other', '', 'other');

$counter = 0;
foreach($array as $value)
{
  if($value === '')
    $counter++;
}
echo $counter;
Posted by: Guest on October-08-2021

Code answers related to "php count occurrence array"

Browse Popular Code Answers by Language