current
(PHP 4, PHP 5, PHP 7, PHP 8)
current — 返回陣列中的當前值
參數
-
array
-
要操作的陣列。
返回值
current()
函式返回目前被內部指針指向的陣列單元的值,並不移動指針。如果內部指針指向超出了單元列表的末端,current()
將返回 false
。
更新日誌
版本 | 說明 |
---|---|
8.1.0 | 棄用在 object 上呼叫此函式。 在 object 優先使用 get_mangled_object_vars() 或者使用 ArrayIterator。 |
範例
示例 #1 current() 函式使用示例
<?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) { }
?>