Showing posts with label reset array in php examples. Show all posts
Showing posts with label reset array in php examples. Show all posts

how can reset array values

how can reset array values
<?php
$numbers = array("one","two","three");
next($number);
$thisvalue = current($number); echo "We are now at $thisvalue\n\n";
$first = reset($number);
echo "Back to $first";
?>