(PHP 4, PHP 5, PHP 7, PHP 8)
current — 返回數(shù)組中的當前值
array
要操作的數(shù)組。
current()
函數(shù)返回當前被內(nèi)部指針指向的數(shù)組單元的值,并不移動指針。如果內(nèi)部指針指向超出了單元列表的末端,current()
將返回 false
。
版本 | 說明 |
---|---|
8.1.0 | 棄用在 object 上調(diào)用此函數(shù)。 在 object 優(yōu)先使用 get_mangled_object_vars() 或者使用 ArrayIterator。 |
示例 #1 current() 函數(shù)使用示例
<?php
$transport = array('foot', 'bike', 'car', 'plane');
$mode = current($transport); // $mode = 'foot';
$mode = next($transport); // $mode = 'bike';
$mode = current($transport); // $mode = 'bike';
$mode = prev($transport); // $mode = 'foot';
$mode = end($transport); // $mode = 'plane';
$mode = current($transport); // $mode = 'plane';
$arr = array();
var_dump(current($arr)); // bool(false)
$arr = array(array());
var_dump(current($arr)); // array(0) { }
?>