| Previous | Home | Next |
array_end()
The end() function moves the internal pointer to, and outputs, the last element in the array.
Syntax:end(array)
In above syntax, "array" specifies the array to use.
Example:
<?php
$vehicle = array("Car", "Scooter", "Motorcycle", "Truck");
echo current($vehicle)."<br>";
echo end($vehicle);
?>
Output:
Car Truck
| Previous | Home | Next |