next

(PHP 4, PHP 5, PHP 7)

next �������е��ڲ�ָ����ǰ�ƶ�һλ

˵��

next ( array &$array ) : mixed

next() �� current() ����Ϊ���ƣ�ֻ��һ�������ڷ���ֵ֮ǰ���ڲ�ָ����ǰ�ƶ�һλ������ζ�������ص�����һ�����鵥Ԫ��ֵ��������ָ����ǰ�ƶ���һλ��

����

array

��Ӱ��� array ��

����ֵ

���������ڲ�ָ��ָ�����һ����Ԫ��ֵ����û�и��൥Ԫʱ���� FALSE��

Warning

�˺������ܷ��ز���ֵ FALSE����Ҳ���ܷ��ص�ͬ�� FALSE �ķDz���ֵ�����Ķ� ���������½��Ի�ȡ������Ϣ��Ӧʹ�� === ����������Դ˺����ķ���ֵ��

����

Example #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';
?>

ע��

Note: �㽫�޷������������β�Լ� boolean FALSE ��Ԫ�����顣Ҫ��ȷ�������ܺ��пյ�Ԫ���ߵ�ԪֵΪ 0 �����飬�μ� each() ������

�μ�

  • current() - ���������еĵ�ǰ��Ԫ
  • end() - ��������ڲ�ָ��ָ�����һ����Ԫ
  • prev() - ��������ڲ�ָ�뵹��һλ
  • reset() - ��������ڲ�ָ��ָ���һ����Ԫ
  • each() - ���������е�ǰ�ļ���ֵ�Բ�������ָ����ǰ�ƶ�һ��