RecursiveDirectoryIterator::getSubPathname

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

RecursiveDirectoryIterator::getSubPathname获取子路径和文件名

描述

public RecursiveDirectoryIterator::getSubPathname(): string

获取子路径和文件名。

参数

此函数没有参数。

返回值

子路径(子目录)和文件名。

示例

示例 #1 getSubPathname() 示例

$directory = '/tmp';

$it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory));

foreach ($it as $file) {
echo 'SubPathName: ' . $it->getSubPathname() . "\n";
echo 'SubPath: ' . $it->getSubPath() . "\n\n";
}

上面的示例将输出类似于以下内容

SubPathName: fruit/apple.xml
     SubPath:     fruit
     
     SubPathName: stuff.xml
     SubPath:     
     
     SubPathName: veggies/carrot.xml
     SubPath:     veggies

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top