(PHP 4, PHP 5, PHP 7, PHP 8)
next — 將數(shù)組中的內部指針向前移動一位
next() 和 current() 的行為類似,只有一點區(qū)別,在返回值之前將內部指針向前移動一位。這意味著它返回的是下一個數(shù)組單元的值并將數(shù)組指針向前移動了一位。
array
受影響的 array 。
返回數(shù)組內部指針指向的下一個單元的值,或當沒有更多單元時返回 false
。
版本 | 說明 |
---|---|
8.1.0 | 棄用在 object 上調用此函數(shù)。 在 object 優(yōu)先使用 get_mangled_object_vars() 或者使用 ArrayIterator。 |
示例 #1 next() 及相關函數(shù)的用法示例
<?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';
?>