Q. What is the result of the following PHP code?
Code:
<?php
$a = array("A","B","C","D","A");
$b = array("A","E","F","D","A");
$c = array_combine($a, $b);
print_r($c);
?>
β
Correct Answer: (B)
Array([A] => A, [B] => E, [C] => F, [D] => D)