Examveda
Examveda

What will be the output of the following PHP code?
<?php
$fruits = array ("apple", "orange", "banana");
echo (next($fruits));	
echo (next($fruits));
?>

A. orangebanana

B. appleorange

C. orangeorange

D. appleapple

Answer: Option A

Solution(By Examveda Team)

The next() function returns the array value residing at the position immediately following that of the current array pointer.

This Question Belongs to PHP >> Arrays

Join The Discussion

Related Questions on Arrays