Home  >  Article  >  Backend Development  >  php数组函数序列之end() - 移动数组内部指针到最后一个元素,并返回该元素的值_php技巧

php数组函数序列之end() - 移动数组内部指针到最后一个元素,并返回该元素的值_php技巧

WBOY
WBOYOriginal
2016-05-17 09:14:501061browse

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

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

例子

复制代码 代码如下:

$people = array("Peter", "Joe", "Glenn", "Cleveland");

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

输出:

Peter
Cleveland
Statement:
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