Q. What is the result of the following PHP code?
Code:<?php
$nbr = array ("1", "2", "3", "4");
echo(next($nbr));
?>
β
Correct Answer: (B)
2
<?php
$nbr = array ("1", "2", "3", "4");
echo(next($nbr));
?>
You must be Logged in to update hint/solution