Q13
What will be the output of the following PHP code?
A.
Array ( [A] => 5 [Cat] => 2 [Dog] => 2 [Tiger] => 1 )
AnswerB.
Array ( [A] => 2 [Cat] => 2 [Dog] => 1 [Tiger] => 1 )
C.
Array ( [A] => 6 [Cat] => 1 [Dog] => 2 [Tiger] => 1 )
D.
Array ( [A] => 2 [Cat] => 1 [Dog] => 4 [Tiger] => 1 )
Answer: Option A
Solution
Answer: Option A
Solution:
The array_count_values() function counts all the values of an array and array_combine() combines arrays.