📜  PHP | DirectoryIterator current()函数

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

PHP | DirectoryIterator current()函数

DirectoryIterator::current()函数是PHP中的一个内置函数,用于返回当前的 DirectoryIterator 项。

句法:

DirectoryIterator DirectoryIterator::current( void )

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

返回值:此函数返回当前的 DirectoryIterator 项。

下面的程序说明了PHP中的 DirectoryIterator::current()函数:

方案一:

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

输出:

.
..
dashboard
img
webalizer
xampp

方案二:

current();
      
    // Display the key and filename
    echo $dir->key() . " => " . 
        $file->getFilename() . "
"; } ?>

输出:

0 => .
1 => ..
2 => applications.html
3 => bitnami.css
4 => dashboard
5 => favicon.ico
6 => geeks.PNG
7 => gfg.php
8 => img
9 => index.php
10 => Sublime Text Build 3211 x64 Setup.exe
11 => webalizer
12 => xampp

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

参考: https://www. PHP.net/manual/en/directoryiterator.current。 PHP