📜  PHP | DirectoryIterator __toString()函数

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

PHP | DirectoryIterator __toString()函数

DirectoryIterator::__toString()函数是PHP中的一个内置函数,用于返回当前 DirectoryIterator 项的文件名。
句法:

string DirectoryIterator::__toString( void )

参数:此函数不接受任何参数。
返回值:该函数返回当前 DirectoryIterator 项的文件名。
下面的程序说明了PHP中的 DirectoryIterator::__toString()函数:
方案一:

php
valid()) {
     
    // Display the filename in string format
    echo $directory->__toString() . "
";       // Move to the next element     $directory->next(); }   ?>


php
key() . " => " .
    $directory->__toString() . "
"; }   ?>


输出:

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

方案二:

PHP

key() . " => " .
    $directory->__toString() . "
"; }   ?>

输出:

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.tostring。 PHP