end() function in php
Last Updated by Pooja Chikara
0 3340
PHP end() function is used to move the current pointer of the array to the end and return the value on that position. It is an inbuilt function of PHP.
Syntax:
end($array);
here,
$array is a PHP array.
Example:
<?php
$arr1 = array("apple","orange","banana","fig",);
$last_value=end($arr1); // it will return the last item of array i.e. fig
echo "last item of array is $last_value <br>";
?>Output:

Note: You should also read prev(), next(), current() and reset() functions.
Share:
Recommended Topics:
You May Also Like
PHP Examples
News letter
Subscribe To Never Miss an Article From

Comments
Waiting for your comments