php 取数组最后一个元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 取数组最后一个元素相关的知识,希望对你有一定的参考价值。
可以用end()函数取出数组的最后一个元素,
$rList = array(
array(‘id‘=>1,‘txt‘=>‘a‘),
array(‘id‘=>2,‘txt‘=>‘a‘),
array(‘id‘=>3,‘txt‘=>‘a‘),
array(‘id‘=>4,‘txt‘=>‘a‘),
);
$test = end($rList);
var_dump($test);
结果:
array(2) {
["id"]=>
int(4)
["txt"]=>
string(1) "a"
}
done!
以上是关于php 取数组最后一个元素的主要内容,如果未能解决你的问题,请参考以下文章