RecursiveDirectoryIterator::getSubPathname
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
RecursiveDirectoryIterator::getSubPathname — サブパスと名前を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
サブパス (サブディレクトリ) とファイル名を返します。
例
例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
参考
- RecursiveDirectoryIterator::getSubPath() - サブパスを取得する
- RecursiveDirectoryIterator::key() - 現在のディレクトリエントリのパスとファイル名を返す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google