1.

What will be the output of the following PHP code? < ?php $fruits = array ("mango", "apple", "pear", "peach"); $fruits = array_flip($fruits); echo ($fruits[0]); ?>

A. mango
B. Error
C. peach
D. 0
Answer» C. peach


Discussion

No Comment Found