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.
<?php
$vehicle = array("Car", "Scooter", "Motorcycle", "Truck");
echo current($vehicle)."<br>";
echo end($vehicle);
?>
Output:
Car Truck
Others
Languages
Frameworks
Web / Design
Mobile Technology
Sql & Technology
R4R