PHP 8.1.28 Released!

RecursiveDirectoryIterator::getSubPathname

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

RecursiveDirectoryIterator::getSubPathnameGet sub path and name

Descrizione

public RecursiveDirectoryIterator::getSubPathname(): string

Gets the sub path and filename.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The sub path (sub directory) and filename.

Esempi

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";
}

Il precedente esempio visualizzerà qualcosa simile a:

SubPathName: fruit/apple.xml
     SubPath:     fruit
     
     SubPathName: stuff.xml
     SubPath:     
     
     SubPathName: veggies/carrot.xml
     SubPath:     veggies

Vedere anche:

add a note

User Contributed Notes

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