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


PHP prev()用法及代码示例


prev()函数是PHP中的内置函数。

  • 它用于从内部指针当前指向的元素数组中返回前一个元素。
  • 我们已经在PHP中讨论了current()函数。
  • current()函数用于返回内部指针当前指向的元素的值,而prev()函数则将其递减或使内部指针指向当前指向的元素的前一个元素。

用法:

prev($array)

参数:该函数接受单个参数$array。这是我们要查找当前元素的数组。


Return Value:它返回数组中元素的值,该值恰好位于内部指针当前指向的元素之前。如果数组为空,则prev()函数将返回FALSE。

以下示例程序旨在说明PHP中的prev()函数:

程序1:

<?php 
  
// input array 
$arr = array("Ram", "Shita", "Geeta", "Shyam"); 
  
// current function print the  
// 1st element of the array. 
echo current($arr) ."\n"; 
  
// next function prints the next  
// element of the current one. 
echo next($arr)."\n"; 
  
// prev function will print the previous element 
// of the current one. As right now current element  
// is Shita so the previous element will be Ram 
echo prev($arr); 
  
?>

输出:

Ram
Shita
Ram

程序2:

<?php 
  
// input array 
$arr = array('a', '2', 'z', '8'); 
  
// current function print the  
// 1st element of the array. 
echo current($arr) ."\n"; 
  
// next function print the next  
// element of the current one. 
echo next($arr)."\n"; 
  
// again next function print the  
// next element of the current one. 
echo next($arr)."\n"; 
  
// prev function will print the previous element  
// of the current one. As right now current  
// element is 'z' so the previous element will be '2' 
echo prev($arr); 
  
?>

输出:

a
2
z
2

参考:
http://php.net/manual/en/function.prev.php



相关用法


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