(PHP 4, PHP 5, PHP 7, PHP 8)
next — 将数组中的内部指针向前移动一位
next() 和 current() 的行为类似,只有一点区别,在返回值之前将内部指针向前移动一位。这意味着它返回的是下一个数组单元的值并将数组指针向前移动了一位。
array
受影响的 array 。
返回数组内部指针指向的下一个单元的值,或当没有更多单元时返回 false
。
版本 | 说明 |
---|---|
8.1.0 | 弃用在 object 上调用此函数。 在 object 优先使用 get_mangled_object_vars() 或者使用 ArrayIterator。 |
示例 #1 next() 及相关函数的用法示例
<?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';
?>