RecursiveDirectoryIterator::getSubPath

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

RecursiveDirectoryIterator::getSubPathObtém o subcaminho

Descrição

public RecursiveDirectoryIterator::getSubPath(): string

Retorna o subcaminho relativo ao diretório fornecido no construtor.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

O subcaminho.

Exemplos

Exemplo #1 Exemplo de getSubPath()

$directory = '/tmp';

$it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory));

foreach ($it as $file) {
echo 'SubPathName: ' . $it->getSubPathName() . "\n";
echo 'SubPath: ' . $it->getSubPath() . "\n\n";
}

O exemplo acima produzirá algo semelhante a:

SubPathName: fruit/apple.xml
     SubPath:     fruit

     SubPathName: stuff.xml
     SubPath:

     SubPathName: veggies/carrot.xml
     SubPath:     veggies

Veja Também

add a note add a note

User Contributed Notes

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