Computer Science, asked by tarikicmab8662, 11 months ago

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 )

Answers

Answered by ajmal64
1
Option A is the correct answer.
Answered by Anonymous
3
Heya! !
_____________________________________________

The answer is Option A ✔
Similar questions