Home > php教程 > php手册 > php数组函数序列之end()

php数组函数序列之end()

WBOY
Release: 2016-06-06 20:39:12
Original
1326 people have browsed it

end() 函数将数组内部指针指向最后一个元素,并返回该元素的值(如果成功)。

定义和用法
end() 函数将数组内部指针指向最后一个元素,并返回该元素的值(如果成功)。

语法
end(array)参数 描述
array 必需。规定要使用的数组。

例子
代码如下:
$people = array("Peter", "Joe", "Glenn", "Cleveland");

echo current($people) . "
";
echo end($people);
?>

输出:

Peter
Cleveland
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template