Question:Given the following array: $array = array(1,1,2,3,4,4,5,6,6,6,6,3,2,2,2); The fastest way to determine the total number a particular value appears in the array is to use which function?
A array_total_values
B array_count_values
C A foreach loop
D count
E a for loop
+ AnswerB
+ Report