(PHP 4, PHP 5, PHP 7)
current — ���������еĵ�ǰ��Ԫ
ÿ�������ж���һ���ڲ���ָ��ָ����"��ǰ��"��Ԫ����ʼָ����뵽�����еĵ�һ����Ԫ��
array
������顣
current() �������ص�ǰ���ڲ�ָ��ָ������鵥Ԫ��ֵ�������ƶ�ָ�롣����ڲ�ָ��ָ���˵�Ԫ�б��ĩ�ˣ�current()
���� FALSE
��
Example #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) { }
?>