发新话题
打印

php 取数组最后一个元素

php 取数组最后一个元素

取出$items数组的最后一个元素,可以用end()函数。
例子:
$items=array('a','b','c');
$i=end($items);

$i就是$items里的最后一个元素。

TOP

发新话题