Check whether array contains more entries

ArrayIterator::valid

(PHP 5, PHP 7, PHP 8)

ArrayIterator::validCheck whether array contains more entries

說明

public ArrayIterator::valid(): bool

Checks if the array contains any more entries.

參數

此函式沒有參數。

返回值

Returns true if the iterator is valid, otherwise false

範例

示例 #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());
?>

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *