(PHP 5 >= 5.1.0, PHP 7)
RecursiveDirectoryIterator::getSubPathname — Get sub path and name
public RecursiveDirectoryIterator::getSubPathname ( ) : string
Gets the sub path and filename.
This function has no parameters.
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";
} The above example will output something similar to:
SubPathName: fruit/apple.xml
SubPath: fruit
SubPathName: stuff.xml
SubPath:
SubPathName: veggies/carrot.xml
SubPath: veggies
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/recursivedirectoryiterator.getsubpathname.php