DirectoryIterator::valid

(PHP 5)

DirectoryIterator::validCheck whether current DirectoryIterator position is a valid file

Beskrivelse

public bool DirectoryIterator::valid ( void )

Check whether current DirectoryIterator position is a valid file.

Parametre

This function has no parameters.

Returnerings Værdier

Returns TRUE if the position is valid, otherwise FALSE

Eksempler

Eksempel #1 A DirectoryIterator::valid() example

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));

// Loop to end of iterator
while($iterator->valid()) {
    
$iterator->next();
}

$iterator->valid(); // FALSE
$iterator->rewind(); 
$iterator->valid(); // TRUE

?>

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top