How to use end function

藏色散人
Release: 2023-04-05 07:16:02
Original
5858 people have browsed it

PHP end() function is used to point the internal pointer of the array to the last unit.

How to use end function

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)
Copy after login

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); //指向最后一个元素 无忌
?>
Copy after login

Output:

无忌
Copy after login

php end() function example 2

<?php
$people = array("peter", "无忌", "欧阳克");
echo end($people); //指向最后一个元素 欧阳克
?>
Copy after login

Output:

欧阳克
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template