📜  PHP | DirectoryIterator isDot()函数

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

PHP | DirectoryIterator isDot()函数

DirectoryIterator::isDot()函数是PHP中的一个内置函数,用于检查当前 DirectoryIterator 项目是否为 '.'或者 '..'

句法:

bool DirectoryIterator::isDot( void )

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

返回值:如果条目是 ,则此函数返回 TRUE。或 ..,否则为 FALSE。

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

方案一:

isDot()) {
  
        // Display directory element and its permission
        $perms = substr(sprintf('%o', $dir->getPerms()), -4);
        echo $dir->getFilename() . " " 
        . " | Permission: " . $perms . "
";     } }    ?>

输出:

applications.html | Permission: 0666
bitnami.css | Permission: 0666
dashboard | Permission: 0777
favicon.ico | Permission: 0666
geeks.PNG | Permission: 0666
gfg.php | Permission: 0666
img | Permission: 0777
index.php | Permission: 0666
Sublime Text Build 3211 x64 Setup.exe | Permission: 0777
webalizer | Permission: 0777
xampp | Permission: 0777

方案二:

valid()) {
  
    // Check if not a dot directory
    if (!$directory->isDot()) {
        echo $directory->getFilename() . "
";     }     $directory->next(); }    ?>

输出:

applications.html
bitnami.css
dashboard
favicon.ico
geeks.PNG
gfg.php
img
index.php
Sublime Text Build 3211 x64 Setup.exe
webalizer
xampp

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

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