📜  PHP | FilesystemIterator __construct()函数

📅  最后修改于: 2022-05-13 01:56:20.853000             🧑  作者: Mango

PHP | FilesystemIterator __construct()函数

FilesystemIterator::__construct()函数是PHP中的一个内置函数,用于构造一个新的文件系统迭代器。

句法:

public FilesystemIterator::__construct( string $path, int $flags )

参数:该函数接受上面提到的两个参数,如下所述:

  • $path:此参数保存文件系统项的路径。
  • $flags:此参数保存提供某些方法的影响和行为的标志。

返回值:此函数不返回任何值。

下面的程序说明了PHP中的 FilesystemIterator::__construct()函数:

方案一:

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 for directory files
    if ($fileItr->isDir()) {
  
        // Display the file name
        echo $fileItr->getFilename() . "
";     }        // Move to the next element     $fileItr->next(); }    ?>

输出:

dashboard
img
webalizer
xampp

注意:此函数的输出取决于服务器文件夹的内容。

参考: https://www. PHP.net/manual/en/filesystemiterator.construct。 PHP