Home > Article > Backend Development > How to use end function
PHP end() function is used to point the internal pointer of the array to the last unit.
php end() function Syntax
Function: Point the internal pointer of the array to the last element and return the value of the element (if successful).
Syntax:
end(array)
Parameters:
array Required. Specifies the array to use.
Description: If successful, return the value of the last element in the array, if the array is empty, return FALSE.
php end() function example 1
<?php $people = array("西门", "灭绝", "无忌"); echo end($people); //指向最后一个元素 无忌 ?>
Output:
无忌
php end() function example 2
<?php $people = array("peter", "无忌", "欧阳克"); echo end($people); //指向最后一个元素 欧阳克 ?>
Output:
欧阳克
This article is an introduction to the PHP end function. I hope it will be helpful to friends in need!
The above is the detailed content of How to use end function. For more information, please follow other related articles on the PHP Chinese website!