RecursiveDirectoryIterator::getSubPath

(PHP 5 >= 5.1.0, PHP 7)

RecursiveDirectoryIterator::getSubPathGet sub path

Opis

public RecursiveDirectoryIterator::getSubPath ( void ) : string

Returns the sub path relative to the directory given in the constructor.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

The sub path.

Przykłady

Przykład #1 getSubPath() example

$directory = '/tmp';
      
      $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory));
      
      foreach ($it as $file) {
          echo 'SubPathName: ' . $it->getSubPathName() . "\n";
          echo 'SubPath:     ' . $it->getSubPath() . "\n\n";
      }

Powyższy przykład wyświetli coś podobnego do:

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

Zobacz też:

add a note add a note

User Contributed Notes

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