Vidyalelo
PHP · Q31

Arrays

Programming · PHP · question 31

Q31

What will be the output of the following PHP code?

A.
Array ( [A] => 2 [Cat] => 1 [Dog] => 2 )
Answer
B.
Array ( [A] => 2 [Cat] => 2 [Dog] => 1 )
C.
Array ( [A] => 1 [Cat] => 1 [Dog] => 2 )
D.
Array ( [A] => 2 [Cat] => 1 [Dog] => 1)

Answer: Option A

Solution

Answer: Option A
Solution:
The array_count_values() function counts all the values of an array.