1.

What will be the output of the following PHP code?
<?php
$First = array("Rahul","Ajit","Ats","Rahul","Ats","Sujit");
$Second = array("Rahul","Rahul","Ajit","Rahul","Aju","Sujit");
$Third = array_combine($First,$Second);
print_r(array_count_values($Third));
?>

A. Error
B. Nothing
C. None of these
Answer» D.


Discussion

No Comment Found

Related MCQs