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
    

参考

関連キーワード:  パス, 取得, ecursiveDirectoryIterator, 名前, サブ, getSubPathname, SubPathName, SubPath, veggies, getSubPath