如何在不更改其内部指针的情况下获取数组的最后一个元素?
我正在做的是:
while(list($key, $value) = each($array)) {
//do stuff
if($condition) {
//Here I want to check if this is the last element of the array
prev($array);
}
}
所以end($array)
会把事情搞砸。