数组 函数
在线手册:中文  英文

prev

(PHP 4, PHP 5)

prev将数组的内部指针倒回一位

说明

mixed prev ( array &$array )

将数组的内部指针倒回一位。

prev()next() 的行为类似,只除了它将内部指针倒回一位而不是前移一位。

参数

array

The input array.

返回值

返回数组内部指针指向的前一个单元的值,或当没有更多单元时返回 FALSE

范例

Example #1 prev() 及相关函数用法示例

<?php
$transport 
= array('foot''bike''car''plane');
$mode current($transport); // $mode = 'foot';
$mode next($transport);    // $mode = 'bike';
$mode next($transport);    // $mode = 'car';
$mode prev($transport);    // $mode = 'bike';
$mode end($transport);     // $mode = 'plane';
?>

注释

Warning

此函数可能返回布尔值 FALSE,但也可能返回等同于 FALSE 的非布尔值。请阅读 布尔类型章节以获取更多信息。应使用 === 运算符来测试此函数的返回值。

Note: 你会无法区分包含 boolean FALSE 单元的数组开头。要正确遍历可能含有空单元或者单元值为 0 的数组,参见 each() 函数。

参见


数组 函数
在线手册:中文  英文

用户评论:

soapergem at gmail dot com (2009-05-29 12:06:28)

Here's a slight revision to xmlich02's backwards iteration example. The problem with his/her example is that it will halt if any of the array elements are boolean false, while this version will not.

<?php

end
($ar);
while ( !
is_null($key key($ar)) ) {
    
$val current($ar);
    echo 
"{$key} => {$val}\n";
    
prev($ar);
}

?>

xmlich02 at stud dot fit dot vutbr dot cz (2007-09-29 12:19:29)

// example of backward iteration
$ar = array ( 'a', 'b', 'c', 'd', 'e', 'f') ;
print_r($ar);
end($ar);
while($val = current($ar)) {
echo $val.' ';
prev($ar);
}

易百教程