end() function in PHP || PHP End Function
×


end() function in php

2229

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.



Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments