PHP Count Montant des fois qu'une valeur apparaît dans le tableau

$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
Lypsoty112