在PHP中获取关联数组的最后一个键/值对的最快方法是什么?

时间:2010-07-03 01:15:08

标签: php

在PHP中获取关联数组的最后一个键/值对的最快方法是什么?我知道有一些罗嗦的方法可以做到这一点。但最简洁有效的方法是什么?

1 个答案:

答案 0 :(得分:4)

end($array); //value
current($array); //another way to get the last value after calling end
key($array); //key (after calling end)