内部ポインターを変更せずに配列の最後の要素を取得するにはどうすればよいですか?
私がやっていることは次のとおりです。
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)
物事を台無しにするでしょう。