PHP Programing language

adplus-dvertising
array_end() Function in PHP
Previous Home Next
adplus-dvertising

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