Belirli bir değer, bir dizide görünen ne sıklıkta saymak

2 Cevap php

I know the function count() of php, but what's the function for counting how often a value appear in an array?

Örnek:

$array = array(
  [0] => 'Test',
  [1] => 'Tutorial',
  [2] => 'Video',
  [3] => 'Test',
  [4] => 'Test'
);

Şimdi "Test" görünene kadar sık ​​saymak istiyorum.

2 Cevap

array_count_values Burada belgelerinde işlevi hakkında daha fazla bilgi bulabilirsiniz işlevini deneyin: http://www.php.net/manual/en/function.array-count-values.php

Bu sayfa örnek:

<?php
$array = array(1, "hello", 1, "world", "hello");
print_r(array_count_values($array));
?>

Üretecektir:

Array
(
    [1] => 2
    [hello] => 2
    [world] => 1
)