ArrayIterator
PHP 手册

ArrayIterator::valid

(PHP 5 >= 5.1.0)

ArrayIterator::validCheck whether array contains more entries

说明

bool ArrayIterator::valid ( void )

Checks if the array contains any more entries.

参数

This function has no parameters.

返回值

无返回值。

范例

Example #1 ArrayIterator::valid() example

<?php
$array 
= array('1' => 'one');

$arrayobject = new ArrayObject($array);
$iterator $arrayobject->getIterator();

var_dump($iterator->valid()); //bool(true)

$iterator->next(); // advance to the next item

//bool(false) because there is only one array element
var_dump($iterator->valid());
?>


ArrayIterator
PHP 手册