Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$a1 = array("a" => "red", "b" => "green", "c" => "blue", "d" => "yellow");
$result = array_flip($a1);
print_r($result);
?>

A. Array ( [red] => red [green] => green [blue] => blue [yellow] => yellow )

B. Array ( [a] => a [b] => b [c] => c [d] => d )

C. Array ( [red] => a [green] => b [blue] => c [yellow] => d )

D. Array ( [a] => red [b] => green [c] => blue [d] => yellow )

Answer: Option C

Solution(By Examveda Team)

The array_flip() function flips/exchanges all keys with their associated values in an array.

This Question Belongs to PHP >> Arrays

Join The Discussion

Related Questions on Arrays