📜  PHP | FilesystemIterator next()函数

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

PHP | FilesystemIterator next()函数

FilesystemIterator::next()函数是PHP中的一个内置函数,用于移动到下一个文件元素。

句法:

void FilesystemIterator::next( void )

参数:此函数不接受任何参数。

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

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

方案一:

valid()) {
  
    // Check for directory
    if ($fileItr->isDir()) {
  
        // Display the filename
        echo $fileItr->getFilename() . "
";     }        // Move to the next element     $fileItr->next(); }    ?>

输出:

dashboard
img
webalizer
xampp

方案二:

valid()) {
  
    // Check if file iterator is not directory
    if (!$fileItr->isDir()) {
  
        // Display the key element
        echo $fileItr->key() . "
";      }        // Move to the next element     $fileItr->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/filesystemiterator.next。 PHP