CakeFest 2024: The Official CakePHP Conference

RecursiveDirectoryIterator::getSubPath

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

RecursiveDirectoryIterator::getSubPathサブパスを取得する

説明

public RecursiveDirectoryIterator::getSubPath(): string

コンストラクタで渡されたディレクトリのサブパスを返します。

パラメータ

この関数にはパラメータはありません。

戻り値

サブパス(サブディレクトリ) を返します。

例1 getSubPath() の例

$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

参考

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top