Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,106 questions

40,778 answers

573 users

How to get the frequency of smallest array value in PHP

1 Answer

0 votes
$arr = array(6, 7, 4, 4, 3, 3, 3, 5, 5, 7, 8, 3, 3, 9, 3, 4, 5, 3); 

$min = min($arr);
   
$frequency = 0;

for ($i = 1; $i < count($arr); $i++) {
    if ($arr[$i] == $min) {
        $frequency++;
    }
}

echo $frequency;
  
  
  
  
/*
run:
         
7
         
*/

 





answered Aug 6, 2022 by avibootz

Related questions

1 answer 33 views
2 answers 50 views
1 answer 48 views
1 answer 61 views
3 answers 68 views
...