| Previous | Home | Next |
array_reset()
The reset() function moves the internal pointer to the first element of the array.
Syntax:reset(array)
In above syntax, "array" specifies the array to use.
Example:
<?php
$vehicle = array("Car", "Scooter", "Motorcycle", "Truck");
echo current($vehicle)."<br>";
echo next($vehicle). "<br>";
echo reset($vehicle);
?>
Output:
Car Scooter Car
| Previous | Home | Next |