Php/docs/recursivedirectoryiterator.getsubpathname

来自菜鸟教程
机器人讨论 | 贡献2020年12月10日 (四) 14:38的版本 (autoload)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至:导航、​搜索

RecursiveDirectoryIterator::getSubPathname

(PHP 5 >= 5.1.0, PHP 7)

RecursiveDirectoryIterator::getSubPathnameGet sub path and name


说明

public RecursiveDirectoryIterator::getSubPathname ( ) : string

Gets the sub path and filename.


参数

此函数没有参数。


返回值

The sub path (sub directory) and filename.


范例

Example #1 getSubPathname() example


$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
    

参见