How to get the last element in an array in php

王林
Release: 2023-04-07 21:14:01
Original
15758 people have browsed it

How to get the last element in an array in php

Method 1: Use PHP built-in function end()

end() The function points the internal pointer to the array the last element and output it.

<?PHP
$array = array(1,2,4,6,8);
echo end($array);
?>
Copy after login

More learning video recommendations: Getting started with php development

Method 2: Use the function array_pop()

array_pop() Function deletes the last element in the array.

<?PHP
$array = array(1,2,4,6,8);
echo array_pop($array);
?>
Copy after login

Method 3: Use the function array_slice()

array_slice() The function returns the selected part of the array.

Note: If the array has string key names, the returned array will retain the key names.

<?PHP
$array = array(1,2,4,6,8);
$k = array_slice($array,-1,1);
print_r($k);  //结果是一维数组
?>
Copy after login

Recommended related articles and tutorials: php tutorial

The above is the detailed content of How to get the last element in an array in php. 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