PHP | DirectoryIterator __construct()函数
DirectoryIterator::__construct()函数是PHP中的一个内置函数,用于从路径构造一个新的目录迭代器。
句法:
public DirectoryIterator::__construct( string $path )
参数:此函数接受单个参数 $path,其中包含要遍历的目录的路径。
返回值:此函数不返回任何值。
下面的程序说明了PHP中的 DirectoryIterator::__construct()函数:
方案一:
valid()) {
// Display the filename
echo $dir->getFilename() . "
";
}
}
?>
输出:
.
..
applications.html
bitnami.css
dashboard
favicon.ico
geeks.PNG
gfg.php
img
index.php
Sublime Text Build 3211 x64 Setup.exe
webalizer
xampp
方案二:
valid()) {
// Check or directory element
if ($directory->isDir()) {
// Display the filename
echo $directory->getFilename() . "
";
}
// Move to the next element
$directory->next();
}
?>
输出:
.
..
dashboard
img
webalizer
xampp
注意:此函数的输出取决于服务器文件夹的内容。
参考: https://www. PHP.net/manual/en/directoryiterator.construct。 PHP