What will be the output of the following PHP code?
<?php $a=array("A","Cat","Dog","A","Dog"); $b=array("A","A","Cat","A","Tiger"); $c=array_combine($a,$b); print_r(array_count_values($c)); ?>
A.Array ( [A] => 5 [Cat] => 2 [Dog] => 2 [Tiger] => 1 )
B.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 )
Answers
Answered by
2
hey mate........the answer is
A.Array ( [A] => 5 [Cat] => 2 [Dog] => 2 [Tiger] => 1 )
A.Array ( [A] => 5 [Cat] => 2 [Dog] => 2 [Tiger] => 1 )
Answered by
1
D.Array ( [A] => 2 [Cat] => 1 [Dog] => 4 [Tiger] => 1 )
Similar questions
Accountancy,
6 months ago
Social Sciences,
6 months ago
Social Sciences,
6 months ago
Computer Science,
1 year ago
Computer Science,
1 year ago
Political Science,
1 year ago
Physics,
1 year ago