PHP | DirectoryIterator getPathname()函数
DirectoryIterator::getPathname()函数是PHP中的一个内置函数,用于返回当前 DirectoryIterator 项的路径和文件名。
句法:
string DirectoryIterator::getPathname( void )
参数:此函数不接受任何参数。
返回值:该函数返回当前文件的路径和文件名。目录不包含尾部斜杠。
下面的程序说明了PHP中的 DirectoryIterator::getPathname()函数:
方案一:
getPathname() . "
";
}
?>
输出:
C:\xampp\htdocs\.
C:\xampp\htdocs\..
C:\xampp\htdocs\applications.html
C:\xampp\htdocs\bitnami.css
C:\xampp\htdocs\dashboard
C:\xampp\htdocs\favicon.ico
C:\xampp\htdocs\geeks.PNG
C:\xampp\htdocs\gfg.php
C:\xampp\htdocs\img
C:\xampp\htdocs\index.php
C:\xampp\htdocs\webalizer
C:\xampp\htdocs\xampp
方案二:
valid()) {
// Check for directory element
if ($directory->isDir()) {
// Display the path name
echo $directory->getPathname() . "
";
}
// Move to the next element
$directory->next();
}
?>
输出:
C:\xampp\htdocs\.
C:\xampp\htdocs\..
C:\xampp\htdocs\dashboard
C:\xampp\htdocs\img
C:\xampp\htdocs\webalizer
C:\xampp\htdocs\xampp
注意:此函数的输出取决于服务器文件夹的内容。
参考: https://www. PHP.net/manual/en/directoryiterator.getpathname。 PHP