end() Function
end()函数是PHP中的内建函数,用于查找给定数组的最后一个元素。函数的作用是:将数组的内部指针改为指向最后一个元素,并返回最后一个元素的值。
语法
1 | end($array) |
参数:此函数接受单个参数$数组。它是我们想要找到的最后一个元素的数组。
返回值:在成功时返回数组最后一个元素的值,在失败i时返回FALSE,当数组为空时。
例子1
1 2 3 4 5 6 | Input: array('Ram', 'Shita', 'Geeta') Output: Geeta Explanation: Here input array contain many elements but output is Geeta i.e, last element of the array as the end() function returns the last element of an array. |
下面的程序演示了PHP中的end()函数:
1 2 3 4 5 6 7 8 9 10 | <?php // input array $arr = array('Ram', 'Shita', 'Geeta'); // end function print the last // element of the array. echo end($arr); ?> |
输出
1 | Geeta |
例子2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <?php // input array $arr = array('1', '3', 'P'); // end function print the last // element of the array. echo end($arr)."\n"; // end() updates the internal pointer // to point to last element as the // current() function will now also // return last element echo current($arr); ?> |
输出
1 2 | P P |