PHP | DirectoryIterator next()函数
DirectoryIterator::next()函数是PHP中的一个内置函数,用于向前移动到下一个 DirectoryIterator 项。
句法:
void DirectoryIterator::next( void )
参数:此函数不接受任何参数。
返回值:此函数不返回任何值。
下面的程序说明了PHP中的 DirectoryIterator::next()函数:
方案一:
valid()) {
// Check for directory
if($directory->isDir()) {
// Display key and file name
echo $directory->key() . " => " .
$directory->getFilename() . "
";
}
// Move to the next element
$directory->next();
}
?>
输出:
0 => .
1 => ..
4 => dashboard
8 => img
11 => webalizer
12 => xampp
方案二:
valid()) {
// Check for file element
if($directory->isFile()) {
// Display the filename
echo $directory->getFilename() . "
";
}
// Move to the next element
$directory->next();
}
?>
输出:
applications.html
bitnami.css
favicon.ico
geeks.PNG
gfg.php
index.php
Sublime Text Build 3211 x64 Setup.exe
注意:此函数的输出取决于服务器文件夹的内容。
参考: https://www. PHP.net/manual/en/directoryiterator.next。 PHP