php获取数组的最后一个元素的方法。使用php内置函数end()。
end() 函数将数组内部指针指向最后一个元素,并返回该元素的值(如果成功)。例如:
$args=Array('www','phpernote','com'); echo end($args);//com