PHP Velho Oeste 2024

DirectoryIterator::valid

(PHP 5, PHP 7)

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

설명

public bool DirectoryIterator::valid ( void )

Check whether current DirectoryIterator position is a valid file.

인수

이 함수는 인수가 없습니다.

반환값

Returns TRUE if the position is valid, otherwise FALSE

예제

Example #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

?>

참고

add a note add a note

User Contributed Notes 1 note

up
-2
josh dot butts at vertive dot com
15 years ago
This function, as far as I can tell, returns boolean, not string.

$di = new DirectoryIterator(/path/to/iterate);
while ($di->valid())
{
    echo $di->getPathname() . "\n";
    $di->next();
}
To Top