PHP Velho Oeste 2024

RecursiveDirectoryIterator::getSubPathname

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

RecursiveDirectoryIterator::getSubPathnameObtiene la sub ruta y nombre

Descripción

public RecursiveDirectoryIterator::getSubPathname(): string

Obtiene la sub ruta y nombre del fichero.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

La sub ruta (sub directorio) y nombre del fichero.

Ejemplos

Ejemplo #1 Ejemplo de getSubPathname()

$directory = '/tmp';

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

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

El resultado del ejemplo sería algo similar a:

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

Ver también

add a note add a note

User Contributed Notes 1 note

up
-4
info at diy-cms dot com
13 years ago
In case you run into a cross-platform issue when retrieving the sub-path , use FilesystemIterator::UNIX_PATHS flag to fix it
To Top