标签:ast set res reset shift pop eset current hello
$array = [‘hello‘,‘world‘,‘cool‘,‘red‘]; 1.第一个元素 $first = array_shift($array); 最后一个元素 $last = array_pop($array); 这种方式相当于剪切,原来的数组$array中的第一个和最后一个不存在了 2.第一个元素 $first = current($array); $first = reset($array); 最后一个元素 $last = end($array); 3.最后一个元素 $last = array_slice($array,-1,1);//返回的是一个数组标签:ast set res reset shift pop eset current hello
原文地址:https://www.cnblogs.com/tt1988/p/9674217.html