php获取数组的最后一个元素的方法。使用php内置函数end()。
end() 函数将数组内部指针指向最后一个元素,并返回该元素的值(如果成功)。例如:
$args=Array('www','Alixixi','com');
echo end($args);//com
您可能感兴趣的文章
- js获取数组的最后一个元素
- php清除数组中的空值元素
- php如何删除数组的第一个元素和最后一个元素
- PHP去除数组中的空值元素(array_filter)
- php获取数组第一个数组单元值的方法
- 如何删除PHP数组中的元素(unset,array_splice)?
- php在数组中查找某个值是否存在(in_array(),array_search(),array_key_exists())
- php二维数组去掉重复值的方法总结
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