📜  PHP | DirectoryIterator getType()函数

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

PHP | DirectoryIterator getType()函数

DirectoryIterator::getType()函数是PHP中的一个内置函数,用于检查当前 DirectoryIterator 项的类型。

句法:

string DirectoryIterator::getType( void )

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

返回值:此函数返回一个表示文件类型的字符串。类型可以是文件、链接或目录之一。

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

方案一:

valid()) {
  
    // Check it is directory or not
    if ($directory->isDir()) {
        $file = $directory->current();
        echo $file->getFilename() . " | Type: "
                . $directory->getType() . "
";     }        // Move to the next element of DirectoryIterator     $directory->next(); }    ?>

输出:

. | Type: dir
.. | Type: dir
dashboard | Type: dir
img | Type: dir
webalizer | Type: dir
xampp | Type: dir

方案二:

current();
      
    echo $dir->key() . " => " . 
        $file->getFilename() . " | Type: " .
        $dir->getType() . "
"; }    ?>

输出:

0 => . | Type: dir
1 => .. | Type: dir
2 => applications.html | Type: file
3 => bitnami.css | Type: file
4 => dashboard | Type: dir
5 => favicon.ico | Type: file
6 => geeks.PNG | Type: file
7 => gfg.php | Type: file
8 => img | Type: dir
9 => index.php | Type: file
10 => webalizer | Type: dir
11 => xampp | Type: dir

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

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