1.

What will be the output of the following PHP code?
<?php
$Flower = array ("Rose", "Lily ", "Sunflower");
echo (next($Flower));
echo (next($Flower));
?>

A. Sunflower
B. Lily
C. Rose
D. Sunflower Lily
E. Lily Sunflower
Answer» F.


Discussion

No Comment Found

Related MCQs