Home > php教程 > php手册 > PHP数组操作获取数组最后一个值的方法

PHP数组操作获取数组最后一个值的方法

WBOY
Release: 2016-06-06 20:04:50
Original
873 people have browsed it

这篇文章主要介绍了PHP数组操作——获取数组最后一个值的方法,需要的朋友可以参考下

php开发过程中,可能经常需要对取出的数组要获取数组的最后健或值。在这里脚本之家总结了三个方法,并且跟据他们三个方法在一些情况下如何使用的条件限制进行了说明。

'; echo end($array);//将数组的内部指针指向最后一个单元,适用于所有数组 echo '
'; rsort($array);//对数组逆向排序,如果数组中含有字母或汉字,结果可能不符合预期,最适用于数字数组 echo $array[0]; ?>

总体来说,,php的内置函数end还是最好的方法的了。大家可以测试下。

PHP取值很容易,可以使用循环遍历、类指针(个人称之),但是如果去数组最后一个值的时候也采用遍历的话是不是消耗了很多性能啊??

下面有三种取值方法可以更好的取出数组的最后一个值:

这是三个函数的取值方法,直接有效,按需选择吧

2012年3月31日编辑:第二种方法有一种弊端,Array_pop()函数会把原来的数据的最后一个数“取出来”,也就是相当于剪切的意思,原来的数据中将不不再有最后一个值了

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