当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP end()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | end() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。