?
What will be the output of the following PHP code?
What will be the output of the following PHP code?
<?php
$fruits = array ("apple", "orange", "banana");
echo (next($fruits));
echo (next($fruits));
?>
<?php
$fruits = array ("apple", "orange", "banana");
echo (next($fruits));
echo (next($fruits));
?>
Answer & Solution
Correct Answer:
Option
A
The next() function returns the array value residing at the position immediately following that of the current array pointer.
Join the Discussion
Login to post a comment or share your explanation.
Login