📜  PHP | DirectoryIterator isReadable()函数

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

PHP | DirectoryIterator isReadable()函数

DirectoryIterator::isReadable()函数是PHP中的一个内置函数,用于检查当前 DirectoryIterator 项目是否可读。

句法:

bool DirectoryIterator::isReadable( void )

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

返回值:如果文件可读,此函数返回 TRUE,否则返回 FALSE。

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

方案一:

isReadable()) {
  
        // 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 for readable element
    if($directory->isReadable()) {
  
        // Display the filename
        echo $directory->getFilename() . "
";     }        // Move to the next element     $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.isreadable。 PHP