PHP | FilesystemIterator key()函数
FilesystemIterator::key()函数是PHP中的一个内置函数,用于检索当前文件的密钥。
句法:
string FilesystemIterator::key( void )
参数:此函数不接受任何参数。
返回值:此函数根据设置的标志返回路径名或文件名。
下面的程序说明了PHP中的 FilesystemIterator::key()函数:
方案一:
key() . "
";
}
?>
输出:
applications.html
bitnami.css
dashboard
favicon.ico
gfg.php
img
index.php
webalizer
xampp
方案二:
valid()) {
// Check for non directory files
if (!$fileItr->isDir()) {
// Display the key
echo $fileItr->key() . "
";
}
// Move to the next element
$fileItr->next();
}
?>
输出:
applications.html
bitnami.css
favicon.ico
gfg.php
index.php
注意:此函数的输出取决于服务器文件夹的内容。
参考: https://www. PHP.net/manual/en/filesystemiterator.key。 PHP