PHP Velho Oeste 2024

RecursiveDirectoryIterator::getSubPathname

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

RecursiveDirectoryIterator::getSubPathnameGet sub path and name

Açıklama

public RecursiveDirectoryIterator::getSubPathname(): string

Gets the sub path and filename.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

The sub path (sub directory) and filename.

Örnekler

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

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

Ayrıca Bakınız

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