end()函數是PHP中的內置函數,用於查找給定數組的最後一個元素。 end()函數將數組的內部指針更改為指向最後一個元素,並返回最後一個元素的值。
用法:
end($array)
參數:該函數接受單個參數$array。這是我們要查找的最後一個元素的數組。
Return Value:成功返回數組的最後一個元素的值,失敗則返回FALSE,即數組為空時。
例子:
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::
<?php
// input array
$arr = array('Ram', 'Shita', 'Geeta');
// end function print the last
// element of the array.
echo end($arr);
?>
輸出:
Geeta
程序2::
<?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);
?>
輸出:
P P
參考:
http://php.net/manual/en/function.end.php
相關用法
- PHP cos( )用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP each()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP key()用法及代碼示例
- PHP sin( )用法及代碼示例
- CSS var()用法及代碼示例
- PHP abs()用法及代碼示例
- p5.js min()用法及代碼示例
- PHP each()用法及代碼示例
- CSS hsl()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | end() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。