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