定义和用法
end() 函数将内部指针指向数组中的最后一个元素,并输出。
相关的方法:
语法
end(array)
参数 | 描述 |
---|---|
array | 必需。规定要使用的数组。 |
技术细节
返回值: | 如果成功则返回数组中最后一个元素的值,如果数组为空则返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
## demo
$array3 = ['test1','test2','test3','test4','test6','last'=>['test1','test2']];
$array4 = ['test1','test2','test3','test4','test6'];
show(end($array3));
show(end($array4));
##输出
Array
(
[0] => test1
[1] => test2
)
test6